Files
Shifted/node_modules/next/dist/cli/next-telemetry.d.ts
2026-02-10 01:14:19 +00:00

8 lines
207 B
JavaScript

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