UNPKG

dots-wrapper

Version:

Digital Ocean v2 api wrapper - javascript - typescript - nodejs

8 lines (7 loc) 361 B
import { IResponse, IContext } from '../../types'; import { IProject } from '..'; export interface IGetDefaultProjectApiResponse { project: IProject; } export type GetDefaultProjectResponse = IResponse<IGetDefaultProjectApiResponse>; export declare const getDefaultProject: ({ httpClient, }: IContext) => () => Promise<Readonly<GetDefaultProjectResponse>>;