| 9 | * @advanced |
| 10 | */ |
| 11 | export interface Effect |
| 12 | { |
| 13 | pipe: string |
| 14 | priority: number |
| 15 | addBounds?(bounds: Bounds, skipUpdateTransform?: boolean): void |
| 16 | addLocalBounds?(bounds: Bounds, localRoot: Container): void |
| 17 | containsPoint?(point: PointData, hitTestFn: (container: Container, point: Point) => boolean): boolean |
| 18 | destroy(): void |
| 19 | } |
| 20 | |
| 21 | /** |
| 22 | * The constructor for an Effect. |
no outgoing calls
no test coverage detected