mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
23 lines
780 B
TypeScript
23 lines
780 B
TypeScript
// Type definitions for Angular JS 1.0 (ngSanitize module)
|
|
// Project: http://angularjs.org
|
|
// Definitions by: Diego Vilar <http://github.com/diegovilar>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
// ngSanitize module (angular-sanitize.js)
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
declare namespace ng.sanitize {
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
// SanitizeService
|
|
// see http://docs.angularjs.org/api/ngSanitize.$sanitize
|
|
///////////////////////////////////////////////////////////////////////////
|
|
interface ISanitizeService {
|
|
(html: string): string;
|
|
}
|
|
|
|
}
|