@vortex.so/cli
Version:
CLI to interact with Vortex.
28 lines (27 loc) • 534 B
TypeScript
export type Context = 'vrt' | 'neo' | 'neu';
export declare const CONTEXTS: {
vrt: {
name: string;
namespace: string;
repo: {
namespace: string;
host: string;
};
};
neo: {
name: string;
namespace: string;
repo: {
namespace: string;
host: string;
};
};
neu: {
name: string;
namespace: string;
repo: {
namespace: string;
host: string;
};
};
};