- Go backend (server/)
- Frontend (web/, server/static/)
- Database and deployment files
- Scripts and docs
Co-Authored-By: 狸花猫/Claude-Qwen3.6-Plus 🐾
18 lines
379 B
TypeScript
18 lines
379 B
TypeScript
/**
|
|
* @fileoverview shadow
|
|
* @author dengfuping_develop@163.com
|
|
*/
|
|
declare class Shadow {
|
|
type: string;
|
|
id: string;
|
|
el: SVGFilterElement;
|
|
cfg: {
|
|
[key: string]: any;
|
|
};
|
|
constructor(cfg: any);
|
|
match(type: any, cfg: any): boolean;
|
|
update(name: any, value: any): this;
|
|
_parseShadow(config: any, el: any): void;
|
|
}
|
|
export default Shadow;
|