https://github.com/angular/angular
Raw File
Tip revision: 0c36f821343036dc37cb2246f70e3163dbe68af7 authored by Jessica Janiuk on 02 February 2022, 19:39:30 UTC
release: cut the v14.0.0-next.1 release (#44951)
Tip revision: 0c36f82
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