listDevices: (
userId: string,
userContext?: Record<string, any>,
) => Promise<
{
devices: {
name: string;
period: number;
skew: number;
verified: boolean;
}[];
status: "OK";
},
> = Wrapper.listDevices
Type declaration
- (
userId: string,
userContext?: Record<string, any>,
): Promise<
{
devices: {
name: string;
period: number;
skew: number;
verified: boolean;
}[];
status: "OK";
},
> Parameters
- userId: string
Optional
userContext: Record<string, any>
Returns Promise<
{
devices: {
name: string;
period: number;
skew: number;
verified: boolean;
}[];
status: "OK";
},
>