UNPKG

@cloud-copilot/iam-collect

Version:

Collect IAM information from AWS Accounts

18 lines 587 B
import {} from '../aws/coreAuth.js'; import {} from '../syncs/typedSync.js'; /** * Typescript factory function to create a strongly typed custom command implementation * * @param CustomContext additional custom client context to be merged into the command context * * @returns a factory function that creates a custom command implementation */ export function customCommandFactory() { return (options) => { return { commandName: () => options.command.name, execute: options.execute }; }; } //# sourceMappingURL=AbstractCommand.js.map