Skip to content

Webpack loader for generating documentation from typescript files.

License

Notifications You must be signed in to change notification settings

bem/ts-docgen-next

Repository files navigation

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.