rake-db 2.20.16 → 2.20.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1713,7 +1713,7 @@ declare const primaryKeyToSql: (primaryKey: Exclude<TableData['primaryKey'], und
|
|
|
1713
1713
|
/**
|
|
1714
1714
|
* Type of {@link rakeDb} function
|
|
1715
1715
|
*/
|
|
1716
|
-
type RakeDbFn = (<SchemaConfig extends ColumnSchemaConfig, CT>(options: MaybeArray<AdapterOptions>, partialConfig: InputRakeDbConfig<SchemaConfig, CT>, args?: string[]) => RakeDbFnReturns<CT>) & {
|
|
1716
|
+
type RakeDbFn = (<SchemaConfig extends ColumnSchemaConfig, CT = undefined>(options: MaybeArray<AdapterOptions>, partialConfig: InputRakeDbConfig<SchemaConfig, CT>, args?: string[]) => RakeDbFnReturns<CT>) & {
|
|
1717
1717
|
/**
|
|
1718
1718
|
* Unlike the original `rakeDb` that executes immediately,
|
|
1719
1719
|
* `rakeDb.lazy` returns the `run` function to be later called programmatically.
|