@cocalc/server
Version:
CoCalc server functionality: functions used by either the hub and the next.js server
19 lines (18 loc) • 388 B
TypeScript
interface Options {
email: string;
account_id?: string;
files?: {
project_id: string;
path?: string;
}[];
type?: "bug" | "question";
subject?: string;
body?: string;
url?: string;
info?: {
userAgent?: string;
browser?: string;
};
}
export default function createTicket(options: Options): Promise<string>;
export {};