Server/project/src/models/eft/hideout/IHandleQTEEventRequestData.ts
2023-11-15 21:12:40 -05:00

10 lines
248 B
TypeScript

export interface IHandleQTEEventRequestData
{
Action: string;
/** true if QTE was successful, otherwise false */
results: boolean[];
/** Id of the QTE object used from db/hideout/qte.json */
id: string;
timestamp: number;
}