@aws-cdk-testing/cli-integ
Version:
Integration tests for the AWS CDK CLI
18 lines (17 loc) • 781 B
TypeScript
import type { IRunnerSource, IPreparedRunnerSource, ITestLibrarySource } from './source';
export declare class RunnerLibraryNpmSource implements IRunnerSource<ITestLibrarySource> {
private readonly packageName;
private readonly range;
readonly sourceDescription: string;
constructor(packageName: string, range: string);
runnerPrepare(): Promise<IPreparedRunnerSource<ITestLibrarySource>>;
}
export declare class TestLibraryNpmSource implements ITestLibrarySource {
readonly packageName: string;
readonly version: string;
constructor(packageName: string, version: string);
requestedVersion(): string;
assertJsiiPackagesAvailable(): void;
initializeDotnetPackages(currentDir: string): Promise<void>;
requestedAlphaVersion(): string;
}