https://github.com/angular/angular
Raw File
Tip revision: e424e9a4a6dbe2abf0b4a7e26c8bf34362798854 authored by Dylan Hunn on 09 August 2023, 20:38:54 UTC
release: cut the v16.1.9 release
Tip revision: e424e9a
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