@neurosity/sdk
Version:
Neurosity SDK
10 lines • 314 B
TypeScript
export type TransferDeviceByEmail = {
recipientsEmail: string;
deviceId: string;
};
export type TransferDeviceByUserId = {
recipientsUserId: string;
deviceId: string;
};
export type TransferDeviceOptions = TransferDeviceByEmail | TransferDeviceByUserId;
//# sourceMappingURL=transferDevice.d.ts.map