Fix linting issues
All checks were successful
Test / build (push) Successful in 2m30s

This commit is contained in:
Ethan Lane 2024-05-15 18:06:19 +01:00
parent 0504598518
commit 30c62bd94d
3 changed files with 7 additions and 5 deletions

View file

@ -1,11 +1,12 @@
import { CronJob } from "cron";
import { v4 } from "uuid";
import { Primitive } from "../type/primitive";
interface Timer {
id: string;
job: CronJob;
context: Map<string, any>;
onTick: ((context: Map<string, any>) => void) | ((context: Map<string, any>) => Promise<void>);
context: Map<string, Primitive>;
onTick: ((context: Map<string, Primitive>) => void) | ((context: Map<string, Primitive>) => Promise<void>);
runOnStart: boolean;
}
@ -19,9 +20,9 @@ export default class TimerHelper {
public AddTimer(
cronTime: string,
timeZone: string,
onTick: ((context: Map<string, any>) => void) | ((context: Map<string, any>) => Promise<void>),
onTick: ((context: Map<string, Primitive>) => void) | ((context: Map<string, Primitive>) => Promise<void>),
runOnStart: boolean = false): string {
const context = new Map<string, any>();
const context = new Map<string, Primitive>();
const job = new CronJob(
cronTime,

View file

@ -1,7 +1,7 @@
import AppLogger from "../client/appLogger";
import User from "../database/entities/app/User";
export default async function GiveCurrency(context: Map<string, any>) {
export default async function GiveCurrency() {
AppLogger.LogInfo("Timers/GiveCurrency", "Giving currency to every known user");
const users = await User.FetchAll(User);

1
src/type/primitive.ts Normal file
View file

@ -0,0 +1 @@
export type Primitive = string | number | boolean;