react-docgen-loader.d.ts 281 B

123456789
  1. import { LoaderContext } from 'webpack';
  2. import { TransformOptions } from '@babel/core';
  3. declare function reactDocgenLoader(this: LoaderContext<{
  4. babelOptions: TransformOptions;
  5. debug: boolean;
  6. }>, source: string): Promise<void>;
  7. export { reactDocgenLoader as default };