@jameslnewell/buildkite-pipelines
Version:
Generate Buildkite pipelines from code.
19 lines (18 loc) • 374 B
TypeScript
export interface KeyBuilder {
getKey(): string | undefined;
/**
* @deprecated Use .setKey() instead
*/
key(key: string): this;
setKey(key: string): this;
}
export declare class KeyHelper {
#private;
getKey(): string | undefined;
setKey(key: string): void;
build(): {
key: string;
} | {
key?: undefined;
};
}