renovate
Version:
Automated dependency updates. Flexible so you don't need to be.
6 lines (5 loc) • 380 B
TypeScript
import type { EmailAddress } from '../../../util/schema-utils';
import type { UserDetails } from './types';
export declare function getAppDetails(token: string): Promise<UserDetails>;
export declare function getUserDetails(endpoint: string, token: string): Promise<UserDetails>;
export declare function getUserEmail(endpoint: string, token: string): Promise<EmailAddress | null>;