UNPKG

lerna

Version:

Lerna is a fast, modern build system for managing and publishing multiple JavaScript/TypeScript packages from the same repository

9 lines (8 loc) 220 B
import { FetchConfig } from "./fetch-config"; export interface WhoIAm { username: string; } /** * Retrieve logged-in user's username via legacy API. */ export declare function getWhoAmI(opts: FetchConfig): WhoIAm;