From 608b33a99d35d26777c785e9584a1c01ed16cdfa Mon Sep 17 00:00:00 2001 From: Kazi Manzur Rashid Date: Sun, 7 Apr 2013 17:05:27 +0600 Subject: [PATCH] Included js-fixtures definitions. --- js-fixtures/fixtures.d.ts | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 js-fixtures/fixtures.d.ts diff --git a/js-fixtures/fixtures.d.ts b/js-fixtures/fixtures.d.ts new file mode 100644 index 000000000..fd9222fd2 --- /dev/null +++ b/js-fixtures/fixtures.d.ts @@ -0,0 +1,14 @@ +declare interface Fixtures { + path: string; + containerId: string; + set(html: string): void; + appendSet(html: string): void; + preload(...htmls: string[]): void; + load(...htmls: string[]): void; + appendLoad(...htmls: string[]): void; + read(...htmls: string[]): string; + clearCache(): void; + cleanUp(): void; +} + +declare var fixtures: Fixtures; \ No newline at end of file