UNPKG

woodwing-assets

Version:

TypeScript client for interacting with the WoodWing Assets Server API

14 lines (13 loc) 319 B
import { HitResponse } from './HitResponse'; export interface FacetEntry { value: string; hitCount: number; selected: boolean; } export interface SearchResponse { facets: Record<string, FacetEntry[]>; firstResult: number; hits: HitResponse[]; maxResultHits: number; totalHits: number; }