@fairmint/canton-node-sdk
Version:
Canton Node SDK
19 lines • 441 B
TypeScript
/**
* 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