mirror of
https://github.com/supabase/supabase.git
synced 2026-07-05 07:14:28 +08:00
38 lines
685 B
TypeScript
38 lines
685 B
TypeScript
export type Json = Record<
|
|
string,
|
|
string | number | boolean | null | Json[] | { [key: string]: Json }
|
|
>
|
|
|
|
export type Section = {
|
|
content: string
|
|
heading?: string
|
|
slug?: string
|
|
}
|
|
|
|
export abstract class BaseLoader {
|
|
type: string
|
|
|
|
constructor(
|
|
public source: string,
|
|
public path: string
|
|
) {}
|
|
|
|
abstract load(): Promise<BaseSource[]>
|
|
}
|
|
|
|
export abstract class BaseSource {
|
|
type: string
|
|
checksum?: string
|
|
meta?: Json
|
|
sections?: Section[]
|
|
|
|
constructor(
|
|
public source: string,
|
|
public path: string
|
|
) {}
|
|
|
|
abstract process(): { checksum: string; meta?: Json; ragIgnore?: boolean; sections: Section[] }
|
|
|
|
abstract extractIndexedContent(): string
|
|
}
|