UNPKG

401 BTypeScriptView Raw
1import { FetchDevicesOutput } from '../types';
2/**
3 * Fetches devices that have been remembered using {@link rememberDevice}
4 * for the currently authenticated user.
5 *
6 * @returns FetchDevicesOutput
7 * @throws {@link ListDevicesException}
8 * @throws AuthTokenConfigException - Thrown when the token provider config is invalid.
9 */
10export declare function fetchDevices(): Promise<FetchDevicesOutput>;