Skip to content

hzzlyxx/json2ts

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

@hzzlyxx/json2ts

NPM version NPM download

How to use

npm install @hzzlyxx/json2ts --save
// or
yarn add @hzzlyxx/json2ts

Examples

import { json2ts } from '@hzzlyxx/json2ts';

const json = {
  Button: {
    description: '按钮组件',
    props: [
      {
        name: 'htmlType',
        type: '"button" | "submit" | "reset"',
        default: '',
        description: 'Button 类型',
        required: false,
      },
    ],
  },
};
const ts = json2ts(json);

// ts
export interface Props {
  name: string;
  type: string;
  default: string;
  description: string;
  required: boolean;
}

export interface Button {
  description: string;
  props: Props[];
}

export interface RootObject {
  button: Button;
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published