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

43 lines
807 B
TypeScript
Raw Normal View History

export declare const StarApiDefinition: {
/**
*
*/
toggle: {
method: "post";
server: "toggle";
client: () => string;
};
/**
*
*/
check: {
method: "post";
server: "check";
client: () => string;
};
/**
*
*/
wikis: {
method: "get";
server: "wikis";
client: () => string;
};
/**
*
*/
wikiDocuments: {
method: "get";
server: "wiki/documents";
client: () => string;
};
/**
*
*/
documents: {
method: "get";
server: "documents";
client: () => string;
};
};