supertokens-node
    Preparing search index...

    Variable listDevices

    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
        • OptionaluserContext: Record<string, any>

        Returns Promise<
            {
                devices: {
                    name: string;
                    period: number;
                    skew: number;
                    verified: boolean;
                }[];
                status: "OK";
            },
        >