- Go backend (server/)
- Frontend (web/, server/static/)
- Database and deployment files
- Scripts and docs
Co-Authored-By: 狸花猫/Claude-Qwen3.6-Plus 🐾
9 lines
218 B
TypeScript
9 lines
218 B
TypeScript
import ShapeBase from './base';
|
|
declare class Polygon extends ShapeBase {
|
|
type: string;
|
|
canFill: boolean;
|
|
canStroke: boolean;
|
|
createPath(context: any, targetAttrs: any): void;
|
|
}
|
|
export default Polygon;
|