Files
supabase/studio/stores/pgmeta/ExtensionsStore.ts
Joshen Lim 9373f69220 Studio 🎙
2021-11-26 11:15:00 +05:30

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