@awayjs/graphics
Version:
AwayJS graphics classes
19 lines • 444 B
TypeScript
/**
* DrawMode is an enumeration of constant values that specify the
* DrawMode to use when drawing.
*/
export declare class DrawMode {
/**
* Used to specify to draw both strokes and fills
*/
static BOTH: number;
/**
* Used to specify to draw strokes only
*/
static STROKE: number;
/**
* Used to specify to draw fills only
*/
static FILL: number;
}
//# sourceMappingURL=DrawMode.d.ts.map