UNPKG

@nmmty/lazycanvas

Version:

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

12 lines (10 loc) 279 B
import { IBaseLayer, IBaseLayerProps, ScaleType } from "../"; export interface ILineLayer extends IBaseLayer { props: ILineLayerProps; } export interface ILineLayerProps extends IBaseLayerProps { endPoint: { x: ScaleType, y: ScaleType } }