source: imaps-frontend/node_modules/konva/lib/shapes/Circle.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: 459 bytes
Line 
1import { Shape, ShapeConfig } from '../Shape.js';
2import { GetSet } from '../types.js';
3import { Context } from '../Context.js';
4export interface CircleConfig extends ShapeConfig {
5 radius?: number;
6}
7export declare class Circle extends Shape<CircleConfig> {
8 _sceneFunc(context: Context): void;
9 getWidth(): number;
10 getHeight(): number;
11 setWidth(width: number): void;
12 setHeight(height: number): void;
13 radius: GetSet<number, this>;
14}
Note: See TracBrowser for help on using the repository browser.