UNPKG

@nmmty/lazycanvas

Version:

A simple way to interact with @napi-rs/canvas in an advanced way!

11 lines (9 loc) 299 B
import { IBaseLayer, IBaseLayerProps } from "./BaseLayer"; import { Point } from "../"; export interface IBezierLayer extends IBaseLayer { props: IBezierLayerProps; } export interface IBezierLayerProps extends IBaseLayerProps { controlPoints: Array<Point>; endPoint: Point; }