UNPKG

@cocalc/server

Version:

CoCalc server functionality: functions used by either the hub and the next.js server

7 lines (6 loc) 176 B
interface Options { account_id: string; password: string; } export default function isPasswordCorrect({ account_id, password, }: Options): Promise<boolean>; export {};