UNPKG

@capgo/cli

Version:

A CLI to upload to capgo servers

13 lines (12 loc) 437 B
import type { OptionsBase } from '../schemas/base'; interface MemberInfo { uid: string; email: string; role: string; is_tmp: boolean; has_2fa: boolean; password_policy_compliant: boolean; } export declare function listMembersInternal(orgId: string, options: OptionsBase, silent?: boolean): Promise<MemberInfo[]>; export declare function listMembers(orgId: string, options: OptionsBase): Promise<void>; export {};