Tracking de l'application VApp (IHM du jeu)

This commit is contained in:
2025-05-11 18:04:12 +02:00
commit 89e9db9b62
17763 changed files with 3718499 additions and 0 deletions

View File

@ -0,0 +1,3 @@
import { ICallNotification, TWorkerMessage } from 'worker-timers-worker';
export declare const isCallNotification: (message: TWorkerMessage) => message is ICallNotification;
//# sourceMappingURL=call-notification.d.ts.map

View File

@ -0,0 +1 @@
{"version":3,"file":"call-notification.d.ts","sourceRoot":"","sources":["../../../src/guards/call-notification.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAC;AAEzE,eAAO,MAAM,kBAAkB,YAAa,cAAc,iCAEzD,CAAC"}

View File

@ -0,0 +1,4 @@
export const isCallNotification = (message) => {
return message.method !== undefined && message.method === 'call';
};
//# sourceMappingURL=call-notification.js.map

View File

@ -0,0 +1 @@
{"version":3,"file":"call-notification.js","sourceRoot":"","sources":["../../../src/guards/call-notification.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,kBAAkB,GAAG,CAAC,OAAuB,EAAgC,EAAE;IACxF,OAA2B,OAAQ,CAAC,MAAM,KAAK,SAAS,IAAwB,OAAQ,CAAC,MAAM,KAAK,MAAM,CAAC;AAC/G,CAAC,CAAC"}

View File

@ -0,0 +1,3 @@
import { IClearResponse, TWorkerMessage } from 'worker-timers-worker';
export declare const isClearResponse: (message: TWorkerMessage) => message is IClearResponse;
//# sourceMappingURL=clear-response.d.ts.map

View File

@ -0,0 +1 @@
{"version":3,"file":"clear-response.d.ts","sourceRoot":"","sources":["../../../src/guards/clear-response.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAC;AAEtE,eAAO,MAAM,eAAe,YAAa,cAAc,8BAEtD,CAAC"}

View File

@ -0,0 +1,4 @@
export const isClearResponse = (message) => {
return message.error === null && typeof message.id === 'number';
};
//# sourceMappingURL=clear-response.js.map

View File

@ -0,0 +1 @@
{"version":3,"file":"clear-response.js","sourceRoot":"","sources":["../../../src/guards/clear-response.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC,OAAuB,EAA6B,EAAE;IAClF,OAAwB,OAAQ,CAAC,KAAK,KAAK,IAAI,IAAI,OAAO,OAAO,CAAC,EAAE,KAAK,QAAQ,CAAC;AACtF,CAAC,CAAC"}