tfsrestservice
Version:
Service which abstracts calls to the TFS/VSTS REST API and exposes the objects to the clients for further usage.
11 lines (10 loc) • 350 B
TypeScript
export interface IGeneralFunctions {
sleep(ms: number): Promise<void>;
trimValues(values: string[]): string[];
trimValue(value: string): string;
}
export declare class GeneralFunctions implements IGeneralFunctions {
sleep(ms: number): Promise<void>;
trimValues(values: string[]): string[];
trimValue(value: string): string;
}