https://github.com/angular/angular
Raw File
Tip revision: c3c82b69fbf13c7dd92053e685006e84e81b3b89 authored by Andrew Kushnir on 11 May 2022, 17:30:55 UTC
release: cut the v14.0.0-rc.0 release
Tip revision: c3c82b6
document-contents.ts
export interface UnsafeDocumentContents {
  /** The unique identifier for this document */
  id: string;
  /** The HTML to display in the doc viewer */
  contents: string|null;
}

export interface DocumentContents {
  /** The unique identifier for this document */
  id: string;
  /** The HTML to display in the doc viewer */
  contents: TrustedHTML|null;
}
back to top