@rockcarver/frodo-lib
Version:
A library to manage ForgeRock Identity Cloud tenants, ForgeOps deployments, and classic deployments.
12 lines • 388 B
TypeScript
export type CallbackType = 'NameCallback' | 'PasswordCallback' | 'TextInputCallback';
export type CallbackKeyValuePair = {
name: string;
value: any;
};
export type Callback = {
type: CallbackType;
output: CallbackKeyValuePair[];
input: CallbackKeyValuePair[];
};
export type CallbackHandler = (callback: Callback) => Callback;
//# sourceMappingURL=CallbackOps.d.ts.map