export type Client = { id: number '@id'?: string name: string email: string | null phone: string | null } export type ClientWrite = { name: string email: string | null phone: string | null }