@cocalc/server
Version:
CoCalc server functionality: functions used by either the hub and the next.js server
8 lines (7 loc) • 357 B
TypeScript
import { License as FullLicense } from "./get-managed";
export declare function isManager(license_id: string, account_id?: string): Promise<boolean>;
export interface License extends Partial<FullLicense> {
number_running?: number;
is_manager: boolean;
}
export default function getLicense(license_id: string, account_id?: string): Promise<License>;