@strapi/pack-up
Version:
Simple tools for creating interoperable CJS & ESM packages.
10 lines (9 loc) • 313 B
TypeScript
import ts from 'typescript';
import type { DtsBaseTask } from './types';
import type { TaskHandler } from '../index';
interface DtsWatchTask extends DtsBaseTask {
type: 'watch:dts';
}
declare const dtsWatchTask: TaskHandler<DtsWatchTask, ts.Diagnostic>;
export { dtsWatchTask };
export type { DtsWatchTask };