mirror of
https://github.com/FrankerFaceZ/FrankerFaceZ.git
synced 2025-06-27 21:05:53 +00:00
More type progress.
This commit is contained in:
parent
fed7d3e103
commit
136a2491c8
42 changed files with 3451 additions and 2311 deletions
12
types/import-types.d.ts
vendored
12
types/import-types.d.ts
vendored
|
@ -2,3 +2,15 @@ declare module "*.scss" {
|
|||
const content: string;
|
||||
export default content;
|
||||
}
|
||||
|
||||
declare module "*.json" {
|
||||
const content: string;
|
||||
export default content;
|
||||
}
|
||||
|
||||
declare module "*.gql" {
|
||||
import { DocumentNode } from "graphql";
|
||||
const Schema: DocumentNode;
|
||||
|
||||
export = Schema;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue