index.d.ts 870 B

1234567891011121314151617181920
  1. /**
  2. * @fileoverview G 的基础接口定义和所有的抽象类
  3. * @author dxq613@gmail.com
  4. */
  5. import * as PathUtil from './util/path';
  6. export * from './types';
  7. export * from './interfaces';
  8. export { default as Event } from './event/graph-event';
  9. export { default as Base } from './abstract/base';
  10. export { default as AbstractCanvas } from './abstract/canvas';
  11. export { default as AbstractGroup } from './abstract/group';
  12. export { default as AbstractShape } from './abstract/shape';
  13. export { PathUtil };
  14. export { getBBoxMethod, registerBBox } from './bbox';
  15. export { getTextHeight, assembleFont } from './util/text';
  16. export { isAllowCapture } from './util/util';
  17. export { multiplyVec2, invert } from './util/matrix';
  18. export { getOffScreenContext } from './util/offscreen';
  19. export { registerEasing } from './animate/register';
  20. export declare const version = "0.5.11";