mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
13 lines
379 B
TypeScript
13 lines
379 B
TypeScript
// Type definitions for htmlescape 1.1
|
|
// Project: https://github.com/zertosh/htmlescape
|
|
// Definitions by: bouzuya <http://bouzuya.net>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
declare function htmlescape(o: any): string;
|
|
declare namespace htmlescape {
|
|
function sanitize(s: string): string;
|
|
}
|
|
|
|
export = htmlescape;
|
|
export as namespace htmlescape;
|