7 lines
228 B
TypeScript
7 lines
228 B
TypeScript
import { APIPathsCrudParams, APIResponseObject } from "../../types";
|
|
export default function <T extends {
|
|
[k: string]: any;
|
|
} = {
|
|
[k: string]: any;
|
|
}>({ table, body }: APIPathsCrudParams<T>): Promise<APIResponseObject>;
|