mirror of
https://github.com/supabase/supabase.git
synced 2026-05-11 02:20:29 +08:00
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
6 lines
95 B
TypeScript
6 lines
95 B
TypeScript
export interface SearchResultInterface {
|
|
title?: string
|
|
href?: string
|
|
content?: string
|
|
}
|