@salesforce/plugin-templates
Version:
Commands to create metadata from a default or custom template
21 lines (20 loc) • 1.69 kB
TypeScript
import { SfCommand } from '@salesforce/sf-plugins-core';
import { CreateOutput } from '@salesforce/templates';
export default class LightningEmbedding extends SfCommand<CreateOutput> {
static readonly summary: string;
static readonly description: string;
static readonly examples: string[];
static readonly state = "beta";
static readonly hidden = true;
static readonly flags: {
name: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
src: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
sandbox: import("@oclif/core/interfaces").OptionFlag<("allow-forms" | "allow-modals" | "allow-orientation-lock" | "allow-pointer-lock" | "allow-popups" | "allow-popups-to-escape-sandbox" | "allow-presentation" | "allow-same-origin" | "allow-scripts" | "allow-storage-access-by-user-activation" | "allow-top-navigation" | "allow-top-navigation-by-user-activation")[], import("@oclif/core/interfaces").CustomOptions>;
'shell-title': import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
'output-dir': import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
'api-version': import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
internal: import("@oclif/core/interfaces").BooleanFlag<boolean>;
loglevel: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
};
run(): Promise<CreateOutput>;
}