Initial commit

This commit is contained in:
2021-10-23 19:59:20 +10:00
commit ba4c9a7d7a
1851 changed files with 1250444 additions and 0 deletions

9
node_modules/konva/cmj/shapes/Rect.d.ts generated vendored Normal file
View File

@@ -0,0 +1,9 @@
import { Shape, ShapeConfig } from '../Shape';
import { GetSet } from '../types';
export interface RectConfig extends ShapeConfig {
cornerRadius?: number | number[];
}
export declare class Rect extends Shape<RectConfig> {
_sceneFunc(context: any): void;
cornerRadius: GetSet<number | number[], this>;
}