Files
supabase/apps/docs/resources/troubleshooting/troubleshootingModel.ts

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
}
}