12 lines
241 B
TypeScript
12 lines
241 B
TypeScript
import type { ReactNode } from "react";
|
|
|
|
export interface TestDate {
|
|
action: ReactNode;
|
|
test_date: string;
|
|
registration_deadline: string;
|
|
late_registration_deadline: string;
|
|
location: string;
|
|
is_digital: boolean;
|
|
id: string;
|
|
}
|