UNPKG

@facets-cloud/facetsctl

Version:
18 lines (17 loc) 454 B
import { Command } from "@oclif/command"; interface FlattenedObject { [key: string]: any; } export default class GenerateConfig extends Command { static description: string; static flags: {}; static args: { name: string; required: boolean; description: string; parse: (input: string) => string; }[]; run(): Promise<void>; flattenObject(obj: any, prefix?: string): FlattenedObject; } export {};