MuleRun
Chat
Resources
Pricing
Back to all
typescript
by
rayanalanzi88886-dev
Run
0
0
Feb 7, 2026
Visit Source
// استخدام Type للاتحادات (Unions) والتقاطعات (Intersections) type Status = 'pending' | 'approved' | 'rejected'; type UserResponse = User & { status: Status }; ```