UNPKG

@paperbits/common

Version:
25 lines (21 loc) 373 B
/** * Entity describing searchable document. */ export interface SearchableDocument { /** * Document location. */ ref: string; /** * Document title, e.g. "About". */ title: string; /** * Document description. */ summary: string; /** * Document content. */ body: string; }