@palmares/drizzle-engine
Version:
This is the engine that wraps the hole drizzle interface in a way palmares can understand and have full control of
7 lines • 425 B
TypeScript
export type CustomArgs<TParamsOfColumnTypes, TReturnTypeOfColumnTypes> = {
args?: TParamsOfColumnTypes;
options?: {
[TKey in keyof TReturnTypeOfColumnTypes as TReturnTypeOfColumnTypes[TKey] extends (...args: any) => any ? TKey : never]?: Parameters<TReturnTypeOfColumnTypes[TKey] extends (...args: any) => any ? TReturnTypeOfColumnTypes[TKey] : never> | string[];
};
};
//# sourceMappingURL=types.d.ts.map