dlbGatekeeper/frontend/src/types.ts

13 lines
203 B
TypeScript

export interface GateEvent {
id: number;
timestamp: string;
action: string;
source: string;
success: boolean;
}
export interface Settings {
maxOpenTime: string;
triggerDuration: string;
}