summaryrefslogtreecommitdiffstats
path: root/custom.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'custom.d.ts')
-rw-r--r--custom.d.ts10
1 files changed, 9 insertions, 1 deletions
diff --git a/custom.d.ts b/custom.d.ts
index f129f76..b54bb07 100644
--- a/custom.d.ts
+++ b/custom.d.ts
@@ -1 +1,9 @@
-declare function require(name: string): string;
+declare module "*.vs" {
+ const content: string;
+ export default content;
+}
+
+declare module "*.fs" {
+ const content: string;
+ export default content;
+}