docker-pilot
Version:
A powerful, scalable Docker CLI library for managing containerized applications of any size
35 lines • 1.17 kB
TypeScript
/**
* Docker Pilot - A powerful, scalable Docker CLI library
*
* @description Main entry point for the Docker Pilot library
* @author Jonhvmp
* @version 1.0.0
*/
export { DockerPilot } from './core/DockerPilot';
export { ConfigManager } from './core/ConfigManager';
export { CommandRunner } from './core/CommandRunner';
export { ServiceManager } from './core/ServiceManager';
export * from './types';
export { Logger } from './utils/Logger';
export { DockerUtils } from './utils/DockerUtils';
export { FileUtils } from './utils/FileUtils';
export { ValidationUtils } from './utils/ValidationUtils';
export { PluginManager } from './plugins/PluginManager';
export { BasePlugin } from './plugins/BasePlugin';
export { BaseCommand } from './commands/BaseCommand';
export * from './commands';
import { DockerPilot } from './core/DockerPilot';
/**
* Default Docker Pilot instance for quick usage
*
* @example
* ```typescript
* import { dockerPilot } from 'docker-pilot';
*
* await dockerPilot.up();
* await dockerPilot.down();
* ```
*/
export declare const dockerPilot: DockerPilot;
export declare const VERSION = "1.0.0";
//# sourceMappingURL=index.d.ts.map