@seatsio/seatsio-types 6.22.0 → 6.23.0
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 +8 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1223,6 +1223,14 @@ export interface ConfigListing {
|
|
|
1223
1223
|
export interface ListingType {
|
|
1224
1224
|
icon?: string;
|
|
1225
1225
|
label?: string;
|
|
1226
|
+
/**
|
|
1227
|
+
* The background color of the listing marker, as a CSS hex color (e.g. `#FFD700`).
|
|
1228
|
+
*/
|
|
1229
|
+
backgroundColor?: string;
|
|
1230
|
+
/**
|
|
1231
|
+
* The color of the listing icon, as a CSS hex color (e.g. `#000000`).
|
|
1232
|
+
*/
|
|
1233
|
+
iconColor?: string;
|
|
1226
1234
|
}
|
|
1227
1235
|
export type ListingTypes = Dict<ListingType>;
|
|
1228
1236
|
export declare function isBooth(object: SelectableObject): object is Booth;
|