UNPKG

definitely-typed-angular

Version:

DefinitelyTyped angularjs

23 lines (17 loc) 814 B
// 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/borisyankov/DefinitelyTyped /// <reference path="angular-1.0.d.ts" /> /////////////////////////////////////////////////////////////////////////////// // ngSanitize module (angular-sanitize.js) /////////////////////////////////////////////////////////////////////////////// declare module ng.sanitize { /////////////////////////////////////////////////////////////////////////// // SanitizeService // see http://docs.angularjs.org/api/ngSanitize.$sanitize /////////////////////////////////////////////////////////////////////////// interface ISanitizeService { (html: string): string; } }