mirror of
https://github.com/quartz-community/explorer.git
synced 2026-07-22 02:50:24 +00:00
- Update types/globals.d.ts with centralized type declarations - Use fetchData global instead of hardcoded /static/contentIndex.json - Revert @quartz-community/types from file:../types to github:quartz-community/types - Add .prettierignore, update .eslintrc.json with triple-slash-reference override - Remove duplicate scripts.d.ts/styles.d.ts
11 lines
243 B
TypeScript
11 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;
|
|
}
|