UNPKG

hades-cli

Version:
21 lines (20 loc) 684 B
import { Command } from '@oclif/command'; import { LiteralObject, LockFile, ModuleDefinitionSchema, SqlRelationship, SqlType } from './../types'; import { Property } from './../utils/property'; export declare class StateService { appName: string; command: Command; schema: ModuleDefinitionSchema; lockFiles: LockFile[]; newLockFiles: LockFile[]; flags: LiteralObject; currentProperty: Property | undefined; cliterConfig: any; relationship: typeof SqlRelationship; sqlType: typeof SqlType; private _originFiles; get uuid(): string; get appKey(): string; set originFiles(originFiles: string[]); get originFiles(): string[]; }