function isHuman(obj: unknown): obj is Human { return !!obj && typeof obj === 'object' && typeof (obj as any).name === 'string' && typeof (obj as any).age === 'number'; }