12 lines
262 B
TypeScript
12 lines
262 B
TypeScript
import type { RunnerGroup } from './RunnerGroup';
|
|
export declare type UpdateRunner = {
|
|
id: number;
|
|
group: RunnerGroup;
|
|
firstname: string;
|
|
middlename?: string;
|
|
lastname: string;
|
|
phone?: string;
|
|
email?: string;
|
|
address?: number;
|
|
};
|