import { DsqlMethodCrudParam, ServerQueryParam } from "../../types"; export type APIDataCrudQuery = ServerQueryParam & { page?: number; }; export type CRUDResponseObject
= {
success: boolean;
payload?: P;
msg?: string;
error?: string;
};
export default function dsqlMethodCrud