UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

23 lines (22 loc) 388 B
import { Type } from "./type"; /** * Indicates the type of shape at the end of a line. */ export declare enum PenLineJoin { /** * Regular angular vertices. */ Miter = 0, /** * Beveled vertices. */ Bevel = 1, /** * Rounded vertices. */ Round = 2 } /** * @hidden */ export declare let PenLineJoin_$type: Type;