aws-sdk-client-mock-jest
Version:
Custom Jest matchers for AWS SDK v3 Client mock
15 lines (14 loc) • 315 B
TypeScript
import type { AwsSdkMockMatchers } from './jestMatchers';
/**
* Types for @types/jest
*/
declare global {
namespace jest {
interface Matchers<R = void> extends AwsSdkMockMatchers<R> {
}
}
}
declare module 'expect' {
interface Matchers<R = void> extends AwsSdkMockMatchers<R> {
}
}