UNPKG

igniteui-react-core

Version:
27 lines (26 loc) 422 B
import { Type } from "./type"; /** * Indicates the type of shape at the end of a line. */ export declare enum PenLineCap { /** * A flat end */ Flat = 0, /** * A square end */ Square = 1, /** * A round end */ Round = 2, /** * A triangluar end */ Triangle = 3 } /** * @hidden */ export declare let PenLineCap_$type: Type;