UNPKG

@tucmc/hazel

Version:
15 lines (14 loc) 777 B
import type { DataType } from '../../util/data/DataType'; import { DMap } from '../../util/data/DMap'; import type { ReferableMapEntity } from '../../util/data/ReferableEntity'; import type { EvaluateCollectionType } from '../types/Evaluate'; import type { IUserData, UserDataCollectionType } from '../types/UserData'; export type SimulatedDataPreset<T extends DataType> = T; export declare class SimulatedDataPresets { private static randomNoise; private static randomStatus; private static readonly rooms; private static readonly titleList; static RandomStudents(): SimulatedDataPreset<UserDataCollectionType>; static RandomEvaluation(studentDataCollection: DMap<string, ReferableMapEntity<IUserData>>): SimulatedDataPreset<EvaluateCollectionType>; }