mirror of
https://github.com/quartz-community/explorer.git
synced 2026-07-22 02:50:24 +00:00
12 lines
243 B
TypeScript
12 lines
243 B
TypeScript
|
|
/// <reference path="../node_modules/@quartz-community/types/globals.d.ts" />
|
||
|
|
|
||
|
|
declare module "*.scss" {
|
||
|
|
const content: string;
|
||
|
|
export default content;
|
||
|
|
}
|
||
|
|
|
||
|
|
declare module "*.inline.ts" {
|
||
|
|
const content: string;
|
||
|
|
export default content;
|
||
|
|
}
|