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