util.d.ts 385 B

123456
  1. import { IBase } from '../interfaces';
  2. export declare function removeFromArray(arr: any[], obj: any): void;
  3. export declare const isBrowser: boolean;
  4. export { isNil, isFunction, isString, isObject, isArray, mix, each, upperFirst } from '@antv/util';
  5. export declare function isParent(container: any, shape: any): boolean;
  6. export declare function isAllowCapture(element: IBase): boolean;