Files
supabase/apps/docs/resources/globalSearch/globalSearchInterface.ts
Charis f611fa11d9 feat (content api): add schemas and models for search results and guides (#35284)
Add models and GraphQL interface definitions for search results and guides (representing Markdown documents such as tutorials, etc.).

These aren't connected to anything yet, but putting them in a separate
PR to keep the review short and relatively simple.

Towards DOCS-214
2025-05-02 12:03:41 -04:00

6 lines
95 B
TypeScript

export interface SearchResultInterface {
title?: string
href?: string
content?: string
}