Files
williammarch.xyz/node_modules/next/dist/cli/next-telemetry.d.ts
2026-04-02 19:13:46 +01: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 };