datasquirel/dist/package-shared/api-paths/index.d.ts
2025-12-22 07:18:57 +01:00

7 lines
222 B
TypeScript

import { APIPathsParams, APIResponseObject } from "../types";
export default function apiCrudHandler<T extends {
[k: string]: any;
} = {
[k: string]: any;
}>(params: APIPathsParams<T>): Promise<APIResponseObject>;