@dbs-portal/tool-mock
Version:
API mocking toolkit using MSW for DBS Portal development workflows
10 lines • 350 B
TypeScript
/**
* CRUD handler factory for creating complete REST API handlers
*/
import type { RequestHandler } from 'msw';
import type { CrudHandlerOptions } from './types';
/**
* Create CRUD handlers for a resource
*/
export declare function createCrudHandlers<T = any>(options: CrudHandlerOptions<T>): RequestHandler[];
//# sourceMappingURL=crud.d.ts.map