Tldraw/apps/docs/types/search-types.ts

15 wiersze
235 B
TypeScript

export type SearchResult = {
type: 'article' | 'category' | 'section' | 'heading'
id: string
subtitle: string
sectionType: string
title: string
url: string
score: number
}
export enum SEARCH_TYPE {
AI = 'ai',
NORMAL = 'n',
}