DefinitelyTyped/escape-html/escape-html.d.ts
2016-03-20 16:54:08 +01:00

12 lines
348 B
TypeScript

// Type definitions for escape-html
// Project: https://github.com/component/escape-html
// Definitions by: Elisée MAURER <https://github.com/elisee/>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare module "escape-html" {
function escapeHTML(text: string): string;
namespace escapeHTML {}
export = escapeHTML;
}