-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Fixed runtime bug "TypeError: __kipper.index is not a function" …
…in compile worker
- Loading branch information
1 parent
2b19523
commit 3202bdf
Showing
2 changed files
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// Define global '__kipper' on the window (d.ts file) | ||
export {}; | ||
|
||
declare global { | ||
var __kipper: { [key: string]: any }; | ||
Check warning on line 5 in src/js/playground/compile/__kipper.d.ts GitHub Actions / build (20.10.0)
Check warning on line 5 in src/js/playground/compile/__kipper.d.ts GitHub Actions / build (20.10.0)
|
||
|
||
interface Window { | ||
Check warning on line 7 in src/js/playground/compile/__kipper.d.ts GitHub Actions / build (20.10.0)
Check warning on line 7 in src/js/playground/compile/__kipper.d.ts GitHub Actions / build (20.10.0)
|
||
__kipper: { [key: string]: any }; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters