Correspondents/node_modules/next/dist/cli/next-telemetry.d.ts
2025-11-13 13:13:34 -07:00

8 lines
214 B
JavaScript

#!/usr/bin/env node
export type NextTelemetryOptions = {
enable?: boolean;
disable?: boolean;
};
declare const nextTelemetry: (options: NextTelemetryOptions, arg: string) => void;
export { nextTelemetry };