morpheus4j
Version:
Morpheus is a migration tool for Neo4j. It aims to be a simple and intuitive way to migrate your database.
18 lines (17 loc) • 595 B
TypeScript
import * as core from '@oclif/core';
export declare const ConnectionFlags: {
readonly host: core.Interfaces.Flag<any>;
readonly port: core.Interfaces.Flag<any>;
readonly scheme: core.Interfaces.Flag<any>;
};
export declare const AuthFlags: {
readonly password: core.Interfaces.Flag<any>;
readonly username: core.Interfaces.Flag<any>;
};
export declare const DatabaseFlags: {
readonly database: core.Interfaces.Flag<any>;
};
export declare const ConfigFlags: {
readonly configFile: core.Interfaces.Flag<any>;
readonly migrationsPath: core.Interfaces.Flag<any>;
};