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

35 lines
640 B
TypeScript
Raw Normal View History

2022-05-23 05:05:59 +00:00
export declare const CollectorApiDefinition: {
/**
*
*/
toggle: {
2022-05-23 08:20:56 +00:00
method: "post";
2022-05-23 05:05:59 +00:00
server: "toggle";
client: () => string;
};
/**
*
*/
check: {
2022-05-23 08:20:56 +00:00
method: "post";
2022-05-23 05:05:59 +00:00
server: "check";
client: () => string;
};
/**
*
*/
wikis: {
2022-05-23 08:20:56 +00:00
method: "get";
2022-05-23 05:05:59 +00:00
server: "wikis";
client: () => string;
};
/**
*
*/
documents: {
2022-05-23 08:20:56 +00:00
method: "get";
2022-05-23 05:05:59 +00:00
server: "documents";
client: () => string;
};
};