think/packages/domains/lib/api/comment.d.ts

36 lines
719 B
TypeScript
Raw Normal View History

2022-05-23 05:05:59 +00:00
import { IComment, IDocument } from '../models';
export declare const CommentApiDefinition: {
/**
*
*/
add: {
2022-05-23 08:20:56 +00:00
method: "post";
2022-05-23 05:05:59 +00:00
server: "add";
client: () => string;
};
/**
*
*/
update: {
2022-05-23 08:20:56 +00:00
method: "patch";
2022-05-23 05:05:59 +00:00
server: "update";
client: () => string;
};
/**
*
*/
delete: {
2022-05-23 08:20:56 +00:00
method: "delete";
2022-05-23 05:05:59 +00:00
server: "delete/:id";
client: (id: IComment['id']) => string;
};
/**
*
*/
documents: {
2022-05-23 08:20:56 +00:00
method: "get";
2022-05-23 05:05:59 +00:00
server: "document/:documentId";
client: (documentId: IDocument['id']) => string;
};
};