index.d.ts 452 B

123456789101112131415
  1. import type * as webpack from 'webpack';
  2. import type { LoaderOptions } from './interfaces';
  3. /**
  4. * The entry point for ts-loader
  5. */
  6. declare function loader(this: webpack.LoaderContext<LoaderOptions>, contents: string, inputSourceMap?: Record<string, any>): void;
  7. export = loader;
  8. /**
  9. * expose public types via declaration merging
  10. */
  11. declare namespace loader {
  12. interface Options extends LoaderOptions {
  13. }
  14. }
  15. //# sourceMappingURL=index.d.ts.map