7 lines
251 B
TypeScript
7 lines
251 B
TypeScript
import { APIResponseObject, DsqlCrudParam } from "../../types";
|
|
export default function dsqlCrud<T extends {
|
|
[key: string]: any;
|
|
} = {
|
|
[key: string]: any;
|
|
}, K extends string = string>(params: DsqlCrudParam<T, K>): Promise<APIResponseObject>;
|