igniteui-react-core
Version:
Ignite UI React Core.
23 lines (22 loc) • 388 B
TypeScript
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;