@salesforce/plugin-trust
Version:
validate a digital signature for a npm package
12 lines (11 loc) • 510 B
TypeScript
import { SfCommand } from '@salesforce/sf-plugins-core';
import { type AllowListResult } from '../../../../shared/allowlist.js';
export declare class AllowListAdd extends SfCommand<AllowListResult> {
static readonly summary: string;
static readonly description: string;
static readonly examples: string[];
static readonly flags: {
name: import("@oclif/core/interfaces").OptionFlag<string[], import("@oclif/core/interfaces").CustomOptions>;
};
run(): Promise<AllowListResult>;
}