UNPKG

mout

Version:

Modular Utilities

6 lines (5 loc) 178 B
/** * checks if a object contains all given properties/values */ declare function matches<T>(target: Record<string, T>, props: string[]): boolean; export default matches;