UNPKG

coveo-search-ui

Version:

Coveo JavaScript Search Framework

9 lines (7 loc) 244 B
/** * The possible valid and supported layouts. * * See the [Result Layouts](https://docs.coveo.com/en/360/) documentation. */ export type ValidLayout = 'list' | 'card' | 'table'; export type RendererValidLayout = ValidLayout | 'preview';