@paperbits/common
Version:
Paperbits common components.
25 lines (21 loc) • 373 B
text/typescript
/**
* 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;
}