mirror of
https://github.com/FrankerFaceZ/FrankerFaceZ.git
synced 2025-06-27 12:55:55 +00:00
16 lines
272 B
TypeScript
16 lines
272 B
TypeScript
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;
|
|
}
|