2020-06-20 11:27:19 +02:00

6 lines
83 B
TypeScript

export type User = {
name?: string;
surname?: string;
ticket: string | null;
};