UNPKG

@flxbl-io/sfp

Version:

sfp is a CLI tool to help you manage your Salesforce projects in an artifact centric model

16 lines (15 loc) 354 B
import { Connection } from '@salesforce/core'; export default class ApexTriggerFetcher { private conn; constructor(conn: Connection); /** * Query Triggers by Name * * @param triggerNames * @returns */ fetchApexTriggerByName(triggerNames: string[]): Promise<{ Id: string; Name: string; }[]>; }