UNPKG

@fairmint/canton-node-sdk

Version:
19 lines 441 B
/** * Create a new user in the system * * @example * ```typescript * const user = await client.createUser({ * name: 'John Doe', * party_id: 'party123' * }); * * ```; */ export declare const CreateUser: new (client: import("../../../../../core").BaseClient) => import("../../../../../core").ApiOperation<{ name: string; party_id?: string; }, { party_id: string; }>; //# sourceMappingURL=create-user.d.ts.map