Merge pull request #476 from kazimanzurrashid/master

Updated the js-fixtures
This commit is contained in:
Diullei Gomes
2013-04-12 14:27:31 -07:00
+6 -4
View File
@@ -1,12 +1,14 @@
declare interface Fixtures {
path: string;
containerId: string;
body(): string;
window(): Window;
set(html: string): void;
appendSet(html: string): void;
preload(...htmls: string[]): void;
load(...htmls: string[]): void;
appendLoad(...htmls: string[]): void;
read(...htmls: string[]): string;
preload(...urls: string[]): void;
load(...urls: string[]): void;
appendLoad(...urls: string[]): void;
read(...urls: string[]): string;
clearCache(): void;
cleanUp(): void;
}