5 lines
188 B
TypeScript
5 lines
188 B
TypeScript
export type LineCap = 'butt' | 'round' | 'square';
|
|
export type LineJoin = 'round' | 'bevel' | 'miter';
|
|
export declare const closePointEps = 0.0001;
|
|
export declare const curveEps = 0.0001;
|