UNPKG

@strapi/pack-up

Version:

Simple tools for creating interoperable CJS & ESM packages.

9 lines (8 loc) 269 B
import type { DtsBaseTask } from './types'; import type { TaskHandler } from '../index'; interface DtsBuildTask extends DtsBaseTask { type: 'build:dts'; } declare const dtsBuildTask: TaskHandler<DtsBuildTask>; export { dtsBuildTask }; export type { DtsBuildTask };