1.1.0 • Published 3 years ago

@hzzlyxx/ts-docs v1.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

@hzzlyxx/ts-docs

NPM version NPM download

How to use

npm install @hzzlyxx/ts-docs --save
// or
yarn add @hzzlyxx/ts-docs

Examples

import * as fs from "fs";
import { TsToJson, JsonToMarkdown } from "@hzzlyxx/ts-docs";

const ts2Json = new TsToJson();
const json2Markdown = new JsonToMarkdown();
const json = ts2Json.parse("./type.ts"); // fileName 文件路径
fs.writeFileSync(
  path.join(dir, `./index.md`),
  json2Markdown.commentToMarkDown(json)
);

TypeScript 接口定义

// type.ts
/**
 * @name Button
 * @description 按钮组件
 */
export interface ButtonProps {
  /**
   * @description Button 类型
   */
  htmlType?: "button" | "submit" | "reset";
  ...
}

转换为 json 对象

{
  "Button": {
    "description": "按钮组件",
    "props": [
      {
        "name": "htmlType",
        "type": "\"button\" | \"submit\" | \"reset\"",
        "default": "",
        "description": "Button 类型",
        "required": false
      }
      ...
    ]
  }
}

生成 MarkDown

属性描述类型默认值必填
htmlTypeButton 类型"button" | "submit" | "reset"--
1.1.0

3 years ago

1.0.10

3 years ago

1.0.9

3 years ago

1.0.8

3 years ago

1.0.7

3 years ago

1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago