@n1k1t/mock-server
Version:
Powerful util to setup mocks over HTTP APIs
24 lines • 643 B
TypeScript
import { Endpoint } from '../models';
declare const _default: Endpoint<{
outgoing: null;
}, import("../models").IEndpointSchema<{
outgoing: null;
}>> & {
http: {
readonly method: "DELETE";
readonly path: "/history";
};
} & {
io: {
readonly path: "history:delete";
};
} & {
handler: ({ reply, server }: (import("..").InternalHttpRequestContext<null> | import("..").InternalSocketIoRequestContext<null>) & {
incoming: {
data?: unknown;
query?: unknown;
};
}) => void;
};
export default _default;
//# sourceMappingURL=history.delete.endpoint.d.ts.map