ze-react-component-library
Version:
ZeroETP React Component Library
13 lines (12 loc) • 474 B
TypeScript
/** 获取自定义指标 GET /measurements */
export declare function getMeasurements(options?: {
[key: string]: any;
}): Promise<any>;
/** 创建一个自定义指标 POST /measurements */
export declare function postMeasurements(body: any, options?: {
[key: string]: any;
}): Promise<any>;
/** 删除某个指标 DELETE /measurements/${param0} */
export declare function deleteMeasurementsByName(params: any, options?: {
[key: string]: any;
}): Promise<any>;