/ts-docgen-next

Webpack loader for generating documentation from typescript files.

Primary LanguageTypeScriptMIT LicenseMIT

ts-docgen-next

npm

✈️ Install

npm i -DE ts-docgen-next

☄️ Usage

As webpack-loader

component.tsx

import { FC } from 'react'

interface ComponentProps {
  property: string
}

export const Component: FC<ComponentProps> = () => null

documentation.mdx

import { ComponentProps } from '!!ts-docgen-next/loader!./component.tsx'

<PropsTable value={ComponentProps} />

📜 License

Project is MIT licensed.