From aa284258438f3577dd8cf328f33268523770ddc5 Mon Sep 17 00:00:00 2001 From: Kazi Manzur Rashid Date: Sat, 13 Apr 2013 03:22:04 +0600 Subject: [PATCH] Updated signature. --- js-fixtures/fixtures.d.ts | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/js-fixtures/fixtures.d.ts b/js-fixtures/fixtures.d.ts index fd9222fd2..dfce88eb7 100644 --- a/js-fixtures/fixtures.d.ts +++ b/js-fixtures/fixtures.d.ts @@ -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; }