UNPKG

@contentstack/cli-cm-seed

Version:

create a Stack from existing content types, entries, assets, etc.

13 lines (12 loc) 377 B
import { Command } from '@contentstack/cli-command'; import { FlagInput } from '@contentstack/cli-utilities'; export default class SeedCommand extends Command { static description: string; static examples: string[]; static usage: string; static flags: FlagInput; static aliases: string[]; run(): Promise<{ api_key: string; } | undefined>; }