replace 'declare var' with 'declare const'

This commit is contained in:
Yuki Ueda 2019-12-26 17:12:23 +09:00
parent ff5f581425
commit 3f6ca94279
2 changed files with 160 additions and 160 deletions

File diff suppressed because it is too large Load diff

View file

@ -31,7 +31,7 @@ declare class LoaderEvent {
readonly detail: string;
}
declare var define: {
declare const define: {
(moduleName: string, dependencies: string[], callback: (...args: any[]) => any): any;
(moduleName: string, dependencies: string[], definition: any): any;
(moduleName: string, callback: (...args: any[]) => any): any;