UNPKG

@rockcarver/frodo-lib

Version:

A library to manage ForgeRock Identity Cloud tenants, ForgeOps deployments, and classic deployments.

13 lines 448 B
import { State } from '../../shared/State'; export type EsvCountResponse = { secrets: number; variables: number; }; /** * Get count of ESV secrets and variables in the environment. * @returns {Promise<EsvCountResponse>} a promise that resolves to an object with counts of secrets and variables */ export declare function getEsvCount({ state, }: { state: State; }): Promise<EsvCountResponse>; //# sourceMappingURL=EsvCountApi.d.ts.map