UNPKG

@flxbl-io/sfp

Version:

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

11 lines (10 loc) 249 B
import { Connection } from '@salesforce/core'; export default class LimitsFetcher { private conn; constructor(conn: Connection); getApiLimits(): Promise<{ name: string; max: number; remaining: number; }[]>; }