Skip to main content
DevTools24

JSON إلى TypeScript

إنشاء واجهات TypeScript أو أسماء الأنواع البديلة من بيانات JSON. الكائنات المتداخلة تُحول تلقائياً إلى أنواع منفصلة.

About Type Generation

  • Nested objects are converted to separate interfaces/types
  • Arrays are typed based on their first element
  • Use "interface" for extendable types, "type" for unions/intersections
  • Optional (?) properties work well when some fields may be undefined

TypeScript Types - التفاصيل التقنية

TypeScript interfaces define the shape of objects for compile-time type checking. Generating types from JSON is useful when working with API responses, configuration files, or any structured data.

بديل سطر الأوامر

# Generate types with quicktype CLI\nnpx quicktype --lang ts --src data.json\n\n# Or use json-to-ts npm package\nnpx json-to-ts data.json

المرجع

عرض المواصفات الرسمية