https://github.com/angular/angular
Raw File
Tip revision: b9aeb858d528c8c229be13a754cc36084bffcbdf authored by Andrew Kushnir on 10 May 2023, 18:08:20 UTC
release: cut the v16.0.1 release
Tip revision: b9aeb85
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