mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-09 11:13:57 +08:00
preloadjs: loadFile() and loadManifest() second argument should be optional
This commit is contained in:
Vendored
+4
-4
@@ -74,10 +74,10 @@ module createjs {
|
||||
initialize(useXHR: bool): void;
|
||||
installPlugin(plugin: () => any): void;
|
||||
load(): void;
|
||||
loadFile(file: Object, loadNow: bool): void;
|
||||
loadFile(file: string, loadNow: bool): void;
|
||||
loadManifest(manifest: Object[], loadNow: bool): void;
|
||||
loadManifest(manifest: string[], loadNow: bool): void;
|
||||
loadFile(file: Object, loadNow?: bool): void;
|
||||
loadFile(file: string, loadNow?: bool): void;
|
||||
loadManifest(manifest: Object[], loadNow?: bool): void;
|
||||
loadManifest(manifest: string[], loadNow?: bool): void;
|
||||
getItem(value: string): Object;
|
||||
getResult(value: string, rawResult?: bool): Object;
|
||||
removeAll(): void;
|
||||
|
||||
Reference in New Issue
Block a user