@gridscale/api
Version:
gridscale API Wrapper
12 lines (11 loc) • 471 B
TypeScript
import { GridscaleObjects } from './GridscaleObjects';
import { APIClass, RequestOptions, ApiResult } from '../api';
import * as models from './../Specs';
interface Label {
list(_options?: RequestOptions, _callback?: Function): Promise<ApiResult<models.LabelsGetResponse>>;
get(_uuid: string, _callback?: Function): Promise<ApiResult<models.LabelGetResponse>>;
}
declare class Label extends GridscaleObjects {
constructor(_api: APIClass);
}
export { Label };