source: imaps-frontend/node_modules/konva/lib/shapes/Rect.d.ts

main
Last change on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 366 bytes
Line 
1import { Shape, ShapeConfig } from '../Shape.js';
2import { GetSet } from '../types.js';
3import { Context } from '../Context.js';
4export interface RectConfig extends ShapeConfig {
5 cornerRadius?: number | number[];
6}
7export declare class Rect extends Shape<RectConfig> {
8 _sceneFunc(context: Context): void;
9 cornerRadius: GetSet<number | number[], this>;
10}
Note: See TracBrowser for help on using the repository browser.