mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-08-30 11:14:27 +08:00
20 lines
510 B
TypeScript
20 lines
510 B
TypeScript
// Type definitions for knockout.punches 0.5.1
|
|
// Project: https://github.com/mbest/knockout.punches
|
|
// Definitions by: Stephen Lautier <https://github.com/johnnyreilly>
|
|
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
|
|
|
/// <reference path="../knockout/knockout.d.ts" />
|
|
|
|
interface KnockoutPunchesStatic {
|
|
enableAll(): void;
|
|
}
|
|
|
|
interface KnockoutStatic {
|
|
punches: KnockoutPunchesStatic;
|
|
}
|
|
|
|
declare module "knockout.punches" {
|
|
export = punches;
|
|
}
|
|
|
|
declare var punches: KnockoutPunchesStatic; |