mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-29 00:51:29 +08:00
18 lines
428 B
TypeScript
18 lines
428 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
|
|
// TypeScript Version: 2.3
|
|
|
|
/// <reference types="handlebars" />
|
|
|
|
interface SwagStatic {
|
|
registerHelpers(handlebars: typeof Handlebars): void;
|
|
}
|
|
|
|
declare var Swag: SwagStatic;
|
|
|
|
export = Swag;
|
|
export as namespace Swag;
|
|
|