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 | |
---|
1 | import { Shape, ShapeConfig } from '../Shape.js';
|
---|
2 | import { GetSet } from '../types.js';
|
---|
3 | import { Context } from '../Context.js';
|
---|
4 | export interface RectConfig extends ShapeConfig {
|
---|
5 | cornerRadius?: number | number[];
|
---|
6 | }
|
---|
7 | export 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.