import { flags } from '@oclif/command'; import Samples from '../samples'; /** * samplesCreate class extending the superClass Samples */ export default class SamplesCreate extends Samples { /** * @param String * Description of the command samples:create */ static description: string; /** * @param string * custom usage string for help * this overrides the default usage */ static usage: string; /** * @param object * Declaration of the command flag */ static flags: { help: import("@oclif/parser/lib/flags").IBooleanFlag; type: flags.IOptionFlag; name: flags.IOptionFlag; 'api-key': flags.IOptionFlag; environment: flags.IOptionFlag; }; /** * @param string[] * some examples of the samples create use for help */ static examples: string[]; run(): Promise; }