mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-08-20 12:00:53 +08:00
added URITemplate for urijs and knockout.punches
- added UriTemplate class + expand method for urijs - added knockout.punches module + enableAll
This commit is contained in:
+13
@@ -0,0 +1,13 @@
|
||||
interface KnockoutPunchesStatic {
|
||||
enableAll(): void;
|
||||
}
|
||||
|
||||
interface KnockoutStatic {
|
||||
punches: KnockoutPunchesStatic;
|
||||
}
|
||||
|
||||
declare module "knockout.punches" {
|
||||
export = punches;
|
||||
}
|
||||
|
||||
declare var punches: KnockoutPunchesStatic;
|
||||
Vendored
+5
@@ -0,0 +1,5 @@
|
||||
declare class URITemplate{
|
||||
constructor();
|
||||
constructor(template: string);
|
||||
expand(vals: Object): string;
|
||||
}
|
||||
Reference in New Issue
Block a user