mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-23 04:49:15 +08:00
17 lines
401 B
TypeScript
17 lines
401 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/DefinitelyTyped/DefinitelyTyped
|
|
|
|
/// <reference types="handlebars" />
|
|
|
|
interface SwagStatic {
|
|
registerHelpers(handlebars: typeof Handlebars): void;
|
|
}
|
|
|
|
declare var Swag: SwagStatic;
|
|
|
|
export = Swag;
|
|
export as namespace Swag;
|
|
|