0
Fork 0
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:
bholmesdev 2024-02-05 16:39:38 -05:00
parent 37d54c7b9e
commit 25f940fe49

View file

@ -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';
};