UNPKG

@nmmty/lazycanvas

Version:

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

11 lines (9 loc) 300 B
import { IBaseLayer, IBaseLayerProps } from "./BaseLayer"; import { Point } from "../"; export interface IQuadraticLayer extends IBaseLayer { props: IQuadraticLayerProps; } export interface IQuadraticLayerProps extends IBaseLayerProps { controlPoint: Point; endPoint: Point; }