diff options
Diffstat (limited to 'portal-FE-os/src/typings.d.ts')
-rw-r--r-- | portal-FE-os/src/typings.d.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/portal-FE-os/src/typings.d.ts b/portal-FE-os/src/typings.d.ts new file mode 100644 index 00000000..940827f5 --- /dev/null +++ b/portal-FE-os/src/typings.d.ts @@ -0,0 +1,7 @@ +interface Window { + define: (name: string, deps: string[], definitionFn: () => any) => void; + + System: { + import: (path) => Promise<any>; + }; +} |