7931274680
Deploy app frontend / app frontend (push) Successful in 1m42s
Deploy service couchdb / service couchdb (push) Successful in 31s
Deploy db-migrations / db-migrations (push) Successful in 1m6s
Deploy service message-delivery-method-web-push / service message-delivery-method-web-push (push) Successful in 1m4s
13 lines
577 B
TypeScript
13 lines
577 B
TypeScript
import { type QRCodeDocument } from '@hereconnect/types'
|
|
|
|
export type QrCodePlacement = QRCodeDocument['placement']
|
|
|
|
export const qrCodePlacements = [
|
|
{ type: 'car', label: 'Автомобиль' },
|
|
{ type: 'pet', label: 'Питомец' },
|
|
{ type: 'door', label: 'Входная дверь дома или квартиры' },
|
|
{ type: 'store', label: 'Магазин' },
|
|
{ type: 'restaurant_table', label: 'Стол в кафе или ресторане' },
|
|
{ type: 'other', label: 'Другое' },
|
|
] as const satisfies { type: QrCodePlacement; label: string }[]
|