diff --git a/knockout.punches/knockout.punches.d.ts b/knockout.punches/knockout.punches.d.ts new file mode 100644 index 000000000..0d500104b --- /dev/null +++ b/knockout.punches/knockout.punches.d.ts @@ -0,0 +1,13 @@ +interface KnockoutPunchesStatic { + enableAll(): void; +} + +interface KnockoutStatic { + punches: KnockoutPunchesStatic; +} + +declare module "knockout.punches" { + export = punches; +} + +declare var punches: KnockoutPunchesStatic; \ No newline at end of file diff --git a/urijs/URITemplate.d.ts b/urijs/URITemplate.d.ts new file mode 100644 index 000000000..de4096e19 --- /dev/null +++ b/urijs/URITemplate.d.ts @@ -0,0 +1,5 @@ +declare class URITemplate{ + constructor(); + constructor(template: string); + expand(vals: Object): string; +} \ No newline at end of file