https://github.com/angular/angular
Raw File
Tip revision: 84b6ef02623f4db165dbd2f0dfa5c4fa7d5a3886 authored by Dylan Hunn on 01 June 2023, 15:34:58 UTC
release: cut the v16.1.0-next.3 release
Tip revision: 84b6ef0
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