UNPKG

steadybit

Version:

Command-line interface to interact with the Steadybit API

10 lines (9 loc) 459 B
import { Experiment } from './types'; export type Datatype = 'json' | 'yaml'; export interface ExperimentFromFile { experiment: Experiment; datatype: Datatype; } export declare function resolveExperimentFiles(files: string[], recursive: boolean): Promise<string[]>; export declare function writeFile(file: string, content: unknown, datatype: Datatype): Promise<void>; export declare function loadExperiment(file: string): Promise<ExperimentFromFile>;