0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-30 22:03:56 -05:00

[ci] format

This commit is contained in:
Chris Swithinbank 2024-04-26 14:09:06 +00:00 committed by astrobot-houston
parent cf58d1ed56
commit c238aa81ee

View file

@ -7,5 +7,8 @@ export function asDrizzleTable<
TableName extends string = string,
TColumns extends ColumnsConfig = ColumnsConfig,
>(name: TableName, tableConfig: TableConfig<TColumns>) {
return internal_asDrizzleTable(name, tableSchema.parse(tableConfig)) as Table<TableName, TColumns>;
return internal_asDrizzleTable(name, tableSchema.parse(tableConfig)) as Table<
TableName,
TColumns
>;
}