mirror of
https://github.com/withastro/astro.git
synced 2025-03-31 23:31:30 -05:00
feat: better seed() types
This commit is contained in:
parent
37d54c7b9e
commit
25f940fe49
1 changed files with 1 additions and 11 deletions
|
@ -160,17 +160,7 @@ export type DBDataContext = {
|
|||
db: SqliteDB;
|
||||
seed<TFields extends FieldsConfig>(
|
||||
collection: ResolvedCollectionConfig<TFields>,
|
||||
data: MaybeArray<
|
||||
SQLiteInsertValue<
|
||||
Table<
|
||||
string,
|
||||
/** TODO: true type inference */ Record<
|
||||
Extract<keyof TFields, string>,
|
||||
FieldsConfig[number] & { optional: true }
|
||||
>
|
||||
>
|
||||
>
|
||||
>
|
||||
data: MaybeArray<SQLiteInsertValue<Table<string, TFields>>>
|
||||
): Promise<any> /** TODO: type output */;
|
||||
mode: 'dev' | 'build';
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue