- Go backend (server/)
- Frontend (web/, server/static/)
- Database and deployment files
- Scripts and docs
Co-Authored-By: 狸花猫/Claude-Qwen3.6-Plus 🐾
15 lines
283 B
TypeScript
15 lines
283 B
TypeScript
/**
|
|
* @fileoverview gradient
|
|
* @author dengfuping_develop@163.com
|
|
*/
|
|
declare class Gradient {
|
|
el: SVGGradientElement;
|
|
id: string;
|
|
cfg: {
|
|
[key: string]: any;
|
|
};
|
|
constructor(cfg: any);
|
|
match(type: any, attr: any): boolean;
|
|
}
|
|
export default Gradient;
|