2018-11-13 09:36:30 +01:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function used to sanitize the value before writing it into the renderer.
|
|
|
|
*/
|
2019-01-03 10:04:06 -08:00
|
|
|
export type SanitizerFn = (value: any, tagName?: string, propName?: string) => string;
|