dots-wrapper
Version:
Digital Ocean v2 api wrapper - javascript - typescript - nodejs
8 lines (7 loc) • 352 B
TypeScript
import { IResponse, IContext } from '../../types';
import { IContainerRegistry } from '..';
export interface IGetRegistryApiResponse {
registry: IContainerRegistry;
}
export type GetRegistryResponse = IResponse<IGetRegistryApiResponse>;
export declare const getRegistry: ({ httpClient, }: IContext) => () => Promise<Readonly<GetRegistryResponse>>;