UNPKG

312 BTypeScriptView Raw
1import { GeometryAABBUpdater } from './interfaces';
2import type { ParsedPathStyleProps } from '../../display-objects';
3export declare class PathUpdater implements GeometryAABBUpdater<ParsedPathStyleProps> {
4 update(parsedStyle: ParsedPathStyleProps): {
5 width: number;
6 height: number;
7 };
8}