mirror of
https://github.com/wagtail/wagtail.git
synced 2024-11-22 11:07:57 +01:00
8 lines
195 B
TypeScript
8 lines
195 B
TypeScript
// See https://stackoverflow.com/questions/44678315/how-to-import-markdown-md-file-in-typescript.
|
|
declare module '*.md';
|
|
declare module '*.html';
|
|
|
|
interface Window {
|
|
WAGTAIL_ICONS: string[];
|
|
}
|