Changeset 0c6b92a for imaps-frontend/node_modules/konva/lib/Context.d.ts
Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/node_modules/konva/lib/Context.d.ts
rd565449 r0c6b92a 3 3 import { IRect } from './types.js'; 4 4 import type { Node } from './Node.js'; 5 declare varCONTEXT_PROPERTIES: readonly ["fillStyle", "strokeStyle", "shadowColor", "shadowBlur", "shadowOffsetX", "shadowOffsetY", "letterSpacing", "lineCap", "lineDashOffset", "lineJoin", "lineWidth", "miterLimit", "direction", "font", "textAlign", "textBaseline", "globalAlpha", "globalCompositeOperation", "imageSmoothingEnabled"];5 declare const CONTEXT_PROPERTIES: readonly ["fillStyle", "strokeStyle", "shadowColor", "shadowBlur", "shadowOffsetX", "shadowOffsetY", "letterSpacing", "lineCap", "lineDashOffset", "lineJoin", "lineWidth", "miterLimit", "direction", "font", "textAlign", "textBaseline", "globalAlpha", "globalCompositeOperation", "imageSmoothingEnabled"]; 6 6 interface ExtendedCanvasRenderingContext2D extends CanvasRenderingContext2D { 7 7 letterSpacing: string; … … 10 10 canvas: Canvas; 11 11 _context: CanvasRenderingContext2D; 12 traceArr: Array< String>;12 traceArr: Array<string>; 13 13 constructor(canvas: Canvas); 14 14 fillShape(shape: Shape): void;
Note:
See TracChangeset
for help on using the changeset viewer.