import { mockClient } from 'aws-sdk-client-mock' export function mockAwsClient(client: TClient) { return mockClient(client as any) as any } export function mockAwsCommand(command: TCommand) { return command as any } export function mockAwsResult(result: TResult) { return result as any }