import type { IUser } from '@growi/core'; export type EditingClient = Pick<IUser, 'name'> & Partial<Pick<IUser, 'username' | 'imageUrlCached'>> & { clientId: number; userId?: string; color: string; colorLight: string; };