fantasia-archive/src/globals.d.ts

19 lines
275 B
TypeScript
Raw Normal View History

2021-03-06 08:08:55 +13:00
declare module "*.md"{
const content: string
export default content
2021-03-06 08:08:55 +13:00
}
2021-03-18 10:26:08 +13:00
declare module "*.png"{
const content: string
export default content
}
2021-05-22 00:04:23 +12:00
declare module "*.ttf"{
const content: string
export default content
}
interface Window {
FA_dbs: PouchDB.Static[]
}