https://github.com/angular/angular
Raw File
Tip revision: 2f4b61e1648e186ea214d231bd990a789ac4c214 authored by Jessica Janiuk on 19 April 2023, 19:33:45 UTC
release: cut the v16.0.0-rc.2 release
Tip revision: 2f4b61e
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