global.d.ts 377 B

123456789101112131415161718
  1. interface Window {
  2. museum: string;
  3. cloudScenicUrl: string;
  4. company: string;
  5. companyId: number;
  6. SCENIC_MUSEUM_POS: {
  7. id: number;
  8. name: string;
  9. left: number;
  10. top: number;
  11. url: string;
  12. }[];
  13. VUE_APP_BACKEND_URL: string;
  14. venueDebug: boolean;
  15. venueReservationUrl: string;
  16. openCloudApi: boolean;
  17. MUSEUM_LIST_TIME: Record<number, string[]>;
  18. }