isMatch.d.ts 285 B

1234567891011121314
  1. /**
  2. * 判断属性中的键和值是否包含在对象中
  3. * @param obj 对象
  4. * @param source 值
  5. */
  6. export declare function isMatch(obj: any, source: any): boolean;
  7. declare module './ctor' {
  8. interface XEUtilsMethods {
  9. isMatch: typeof isMatch;
  10. }
  11. }
  12. export default isMatch