json2ts-vsc

0.1.0 • Public • Published

json2ts-vsc

convert JSON or JS object to ts type

Features

  • support level nesting
  • support array parse
  • support comment parse
  • more flexible. support key with double quotes or single quotes or no quotes

Usage

JSON / JS object

json2ts converts a JSON from clipboard to TypeScript interfaces with cmd+alt+V or ctrl+alt+V.
In mac, ^ + ⌥ + V

// copy content below
{ 
  // This is a name key
  name: "bengbeng", // His name is bengbeng
  age: 20, // This is his age
  interest: [ 'swim', 'football', 22, {a: 1, b:2}, {a: 1} ]
  girlfriend: {
  	name: "qiaqia",
    age: 18,
    "exboyfriend": [
      {
    	name: "uzzz",
        age: 40
      }
    ]
  }
}

// paste, then get this 👇
type Interest$1Type = {
  a: number
  b?: number
}

type Exboyfriend$2Type = {
  name: string
  age: number
}

type Girlfriend$3Type = {
  name: string
  age: number
  exboyfriend: Array< Exboyfriend$2Type >
}

type Result$0Type = {
  // This is a name key; 
  // His name is bengbeng
  name: string
  // This is his age
  age: number
  interest: Array< string | number | Interest$1Type >
  girlfriend: Girlfriend$3Type
}

REST-Service

Copy a REST-Service URL to clipboard and insert TypeScript interfaces with cmd+alt+X or ctrl+alt+X.
In mac, ^ + ⌥ + X

Thanks

Inspire by VSCode-json2ts

Enjoy!

Readme

Keywords

none

Package Sidebar

Install

npm i json2ts-vsc

Weekly Downloads

3

Version

0.1.0

License

none

Unpacked Size

22.9 kB

Total Files

18

Last publish

Collaborators

  • cyly