hidexml.pipe.d.ts 488 B

123456789101112
  1. import { PipeTransform } from '@angular/core';
  2. import * as i0 from "@angular/core";
  3. /**
  4. * 文字生成过程中 xml格式标签自动隐藏 用于语音对话答复字符显示
  5. * @desc
  6. */
  7. export declare class HidexmlPipe implements PipeTransform {
  8. transform(value: string, ...args: unknown[]): unknown;
  9. hideXmlTags(xmlString: any): any;
  10. static ɵfac: i0.ɵɵFactoryDeclaration<HidexmlPipe, never>;
  11. static ɵpipe: i0.ɵɵPipeDeclaration<HidexmlPipe, "hidexml", true>;
  12. }