Files
DefinitelyTyped/swag/swag.d.ts
Shogo Iwano 8846c6cddc Add swag
2014-12-25 09:29:28 +09:00

17 lines
418 B
TypeScript

// Type definitions for swag 0.6.1
// Project: https://github.com/elving/swag
// Definitions by: Shogo Iwano <https://github.com/shiwano>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
/// <reference path="../handlebars/handlebars.d.ts" />
interface SwagStatic {
registerHelpers(handlebars: typeof Handlebars): void;
}
declare var Swag: SwagStatic;
declare module 'swag' {
export = Swag;
}