Cheat Revealer

type Cache = {
    hit: boolean;
    at: string;
}

export interface ICheatData {
    software: string;
    detected: string; // ISO DATE 
    cache?: Cache;
}
export interface ICheatData {
    software: string;
    detected: string; // ISO DATE 
    cache?: {
        hit: boolean;
        at: string;  // ISO DATE 
    };
}

Last updated