This commit is contained in:
2024-10-25 20:39:31 +05:00
parent 98017b3d83
commit 2ce2a81aef
529 changed files with 3055 additions and 1954 deletions
+6
View File
@@ -0,0 +1,6 @@
interface IFloorPopupItem {
count: number;
title: string;
}
export default IFloorPopupItem;
+6
View File
@@ -0,0 +1,6 @@
interface IPath {
"data-name": string;
d: string;
}
export default IPath;