@arenarium/maps 1.0.30 → 1.0.31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +23 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -130,8 +130,31 @@ declare const mapOptionsSchema: z.ZodObject<{
|
|
|
130
130
|
};
|
|
131
131
|
};
|
|
132
132
|
}>;
|
|
133
|
+
declare const mapPopupSchema: z.ZodObject<{
|
|
134
|
+
id: z.ZodString;
|
|
135
|
+
index: z.ZodNumber;
|
|
136
|
+
lat: z.ZodNumber;
|
|
137
|
+
lng: z.ZodNumber;
|
|
138
|
+
width: z.ZodNumber;
|
|
139
|
+
height: z.ZodNumber;
|
|
140
|
+
}, "strip", z.ZodTypeAny, {
|
|
141
|
+
lat: number;
|
|
142
|
+
lng: number;
|
|
143
|
+
id: string;
|
|
144
|
+
index: number;
|
|
145
|
+
width: number;
|
|
146
|
+
height: number;
|
|
147
|
+
}, {
|
|
148
|
+
lat: number;
|
|
149
|
+
lng: number;
|
|
150
|
+
id: string;
|
|
151
|
+
index: number;
|
|
152
|
+
width: number;
|
|
153
|
+
height: number;
|
|
154
|
+
}>;
|
|
133
155
|
export type MapOptions = z.infer<typeof mapOptionsSchema>;
|
|
134
156
|
export type MapTheme = z.infer<typeof mapThemeSchema>;
|
|
157
|
+
export type MapPopup = z.infer<typeof mapPopupSchema>;
|
|
135
158
|
declare namespace Types {
|
|
136
159
|
export interface Popup {
|
|
137
160
|
id: string;
|