- Go backend (server/)
- Frontend (web/, server/static/)
- Database and deployment files
- Scripts and docs
Co-Authored-By: 狸花猫/Claude-Qwen3.6-Plus 🐾
10 lines
203 B
TypeScript
10 lines
203 B
TypeScript
export interface Point {
|
|
x: number;
|
|
y: number;
|
|
}
|
|
export interface BoundPoint {
|
|
min: Point;
|
|
max: Point;
|
|
}
|
|
export default function pathIntersection(path1: any, path2: any): number | any[];
|