9 lines
407 B
TypeScript
9 lines
407 B
TypeScript
export const qrCodePlacements = [
|
|
{ type: 'car', label: 'Автомобиль' },
|
|
{ type: 'pet', label: 'Питомец' },
|
|
{ type: 'door', label: 'Входная дверь дома или квартиры' },
|
|
{ type: 'store', label: 'Магазин' },
|
|
{ type: 'restaurant_table', label: 'Стол в кафе или ресторане' },
|
|
{ type: 'other', label: 'Другое' },
|
|
] as const
|