index.d.ts 487 B

1234567891011
  1. /*
  2. * While in local development, make sure you've run `pnpm run build` first.
  3. */
  4. import { concurrently } from './dist/src/index.js';
  5. export * from './dist/src/index.js';
  6. // @ts-expect-error ignore the usage of `export =` along with `export default`.
  7. // This is seemingly fine, but the file needs to be included in the TS project, which can't be done
  8. // due to importing from `dist`. See https://stackoverflow.com/q/42609768/2083599
  9. export = concurrently;
  10. export default concurrently;