/
mrskycriper
/
Test
Обзор
Документация
Войти
/
mrskycriper
/
Test
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
dev
src/interfaces/barcode.ts
26 строк
484 B
mrskycriper
Fix file capitalization in git
08 апр 2025, 15:02
08 апр 2025, 15:02
1ff3f57
Код
Авторство
О чём код?
export enum BarcodeFormat { QR = "PKBarcodeFormatQR", PDF417 = "PKBarcodeFormatPDF417", Aztec = "PKBarcodeFormatAztec", Code128 = "PKBarcodeFormatCode128", } export enum BCID { QR = "qrcode", PDF417 = "pdf417", Aztec = "azteccode", Code128 = "code128", } export interface Barcode { altText?: string; message: string; format: BarcodeFormat; messageEncoding: string; } export interface BarcodeSizing { scale?: number; height?: number; width?: number; }