summaryrefslogtreecommitdiffstats
path: root/src/renderer/custom.d.ts
blob: c9a88b89b69b2af824317a224d6217824269214b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
declare namespace NodeJS {
	interface Module {
		// eslint-disable-next-line @typescript-eslint/no-explicit-any
		hot: any;
	}
}

declare module '*.vs' {
	const content: string;
	export default content;
}

declare module '*.fs' {
	const content: string;
	export default content;
}