ba-cafe-timer

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

presets.ts (411B)


      1 import { TapKind } from "./handleTap";
      2 
      3 export const notifMessages: Record<TapKind, string> = {
      4   normal: "Your students are waiting in cafe.",
      5   ticket1: "Invcention tiket of first cafe is available.",
      6   ticket2: "Invcention tiket of first cafe is available.",
      7 };
      8 
      9 export const settedTime: Record<TapKind, number> = {
     10   normal: 3 * 60 * 60 * 1000,
     11   ticket1: 22 * 60 * 60 * 1000,
     12   ticket2: 22 * 60 * 1000,
     13 };