13 lines
341 B
TypeScript
13 lines
341 B
TypeScript
import apiCrudGET from "./get";
|
|
import apiCrudPOST from "./post";
|
|
import apiCrudPUT from "./put";
|
|
import apiCrudDELETE from "./delete";
|
|
declare const crud: {
|
|
get: typeof apiCrudGET;
|
|
insert: typeof apiCrudPOST;
|
|
update: typeof apiCrudPUT;
|
|
delete: typeof apiCrudDELETE;
|
|
options: () => Promise<void>;
|
|
};
|
|
export default crud;
|