File size: 203 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 |
export const DEVICE_TYPES = {
COMPUTER: 'computer',
TABLET: 'tablet',
PHONE: 'phone',
} as const;
export const DEVICES_SUPPORTED = [ DEVICE_TYPES.COMPUTER, DEVICE_TYPES.TABLET, DEVICE_TYPES.PHONE ];
|