رجوع

أدوات المطور

JSON إلى TypeScript

حوّل JSON إلى تعريفات أنواع TypeScript.

التصنيف

أدوات المطور

الوسوم

JSONtypescriptمولد النوعdeveloper
المزيد من أدوات المطور
الإدخال

JSON إلى TypeScript

JSONtypescriptمولد النوعdeveloper
الإخراج

Generated TypeScript types

type ToolPlanetResponse = {
  id: number;
  name: string;
  featured: boolean;
  tags: string[];
  stats: {
    tools: number;
  };
};