preloadjs: loadFile() and loadManifest() second argument should be optional

This commit is contained in:
Josh Tynjala
2013-03-08 04:16:38 -08:00
parent 944a4a50de
commit 1a748a6a96
+4 -4
View File
@@ -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;