mirror of
https://github.com/supabase/supabase.git
synced 2026-05-06 17:00:27 -04:00
14 lines
399 B
TypeScript
14 lines
399 B
TypeScript
import { type SearchResultInterface } from '../globalSearch/globalSearchInterface'
|
|
|
|
export class TroubleshootingModel implements SearchResultInterface {
|
|
public title?: string
|
|
public href?: string
|
|
public content?: string
|
|
|
|
constructor({ title, href, content }: { title?: string; href?: string; content?: string }) {
|
|
this.title = title
|
|
this.href = href
|
|
this.content = content
|
|
}
|
|
}
|