webglimpse
Version:
Webglimpse is a data visualization library for the web.
11 lines (10 loc) • 326 B
TypeScript
import { Color } from '../color';
import { Painter } from '../core';
export interface BorderOptions {
drawTop?: boolean;
drawLeft?: boolean;
drawRight?: boolean;
drawBottom?: boolean;
thickness?: number;
}
export declare function newBorderPainter(color: Color, options?: BorderOptions): Painter;