fantasia-archive/src/globals.d.ts

14 lines
200 B
TypeScript
Raw Normal View History

2021-03-06 08:08:55 +13:00
declare module "*.md"{
const content: string
2021-05-02 02:31:33 +12:00
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
}
interface Window {
FA_dbs: PouchDB.Static[]
}