mirror of
https://github.com/supabase/supabase.git
synced 2026-07-06 12:44:31 +08:00
17 lines
462 B
TypeScript
17 lines
462 B
TypeScript
import PostgresMetaInterface from '../common/PostgresMetaInterface'
|
|
import { PostgresColumn } from '@supabase/postgres-meta'
|
|
import { IRootStore } from '../RootStore'
|
|
|
|
export default class ExtensionsStore extends PostgresMetaInterface<PostgresColumn> {
|
|
constructor(
|
|
rootStore: IRootStore,
|
|
dataUrl: string,
|
|
headers?: {
|
|
[prop: string]: any
|
|
},
|
|
options?: { identifier: string }
|
|
) {
|
|
super(rootStore, dataUrl, headers, options)
|
|
}
|
|
}
|