This commit is contained in:
2024-12-12 02:11:01 +02:00
parent 1810c550ba
commit 2939b029b0
5 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -1,2 +1,2 @@
export * from "./qrCodePlacements";
export * from "./EPOCH";
export { qrCodePlacements, type QrCodePlacement } from "./qrCodePlacements";
export { EPOCH } from "./EPOCH";
+1 -1
View File
@@ -1,7 +1,7 @@
{
"compilerOptions": {
"declaration": true,
"target": "ES2020",
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "node",
"outDir": "./dist",
@@ -40,8 +40,8 @@ export interface QRCodeDocument extends BaseDocument {
/** Тип объекта, для которого создан QR‑код, например "car" */
placement: "car" | "pet" | "door" | "store" | "restaurant_table" | "other";
/** Доступные действия для гостей (например, ["send_message"]) */
actions: string[];
/** Доступные действия для гостей (например, ["sendMessage"]) */
actions: ("sendMessage" | "viewContactInfo")[];
/** Предустановленное сообщение для гостей */
predefinedMessages?: string[];
+1 -1
View File
@@ -2,7 +2,7 @@
"compilerOptions": {
"declaration": true,
"outDir": "./dist",
"target": "ES2020",
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "node",
"strict": true,