skysync-cli
Version:
SkySync Command Line Interface
10 lines (9 loc) • 442 B
TypeScript
import { IHttpClient } from '../http';
import { BaseResource } from './resource';
import { CancellationToken } from '../cancellation-token';
import { Performance } from '../models';
export declare class PerformanceResource extends BaseResource {
constructor(httpClient: IHttpClient);
get(token?: CancellationToken): Promise<Performance>;
post(performance: Performance, token?: CancellationToken): Promise<Performance>;
}