sfdx-hardis
Version:
Swiss-army-knife Toolbox for Salesforce. Allows you to define a complete CD/CD Pipeline. Orchestrate base commands and assist users with interactive wizards
13 lines (12 loc) • 384 B
TypeScript
import { SfCommand } from '@salesforce/sf-plugins-core';
export type HelloWorldResult = {
name: string;
time: string;
};
export default class World extends SfCommand<HelloWorldResult> {
static readonly summary: string;
static readonly description: string;
static readonly examples: string[];
static readonly flags: any;
run(): Promise<HelloWorldResult>;
}