UNPKG

morpheus4j

Version:

Morpheus is a migration tool for Neo4j. It aims to be a simple and intuitive way to migrate your database.

15 lines (14 loc) 494 B
import { Command } from '@oclif/core'; export default class Create extends Command { static args: { name: import("@oclif/core/lib/interfaces").Arg<string, Record<string, unknown>>; }; static description: string; static enableJsonFlag: boolean; static examples: string[]; static flags: { configFile: import("@oclif/core/lib/interfaces").Flag<any>; migrationsPath: import("@oclif/core/lib/interfaces").Flag<any>; }; run(): Promise<void>; }