Files
scrap/node_modules/next/dist/cli/next-telemetry.d.ts
2024-09-24 03:52:46 +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 };