@cocalc/server
Version:
CoCalc server functionality: functions used by either the hub and the next.js server
9 lines (8 loc) • 322 B
TypeScript
interface Options {
account_id: string;
password?: string;
action: "get" | "delete" | "regenerate";
}
export default function manage({ account_id, password, action, }: Options): Promise<string | undefined>;
export declare function getAccountWithApiKey(api_key: string): Promise<string | undefined>;
export {};