Files
old-kitabcitab-frontend/kitabcitab/node_modules/next/dist/telemetry/events/session-stopped.d.ts
2022-12-27 12:05:56 +01:00

14 lines
420 B
TypeScript

export declare type EventCliSessionStopped = {
cliCommand: string;
nextVersion: string;
nodeVersion: string;
turboFlag?: boolean | null;
durationMilliseconds?: number | null;
pagesDir?: boolean;
appDir?: boolean;
};
export declare function eventCliSession(event: Omit<EventCliSessionStopped, 'nextVersion' | 'nodeVersion'>): {
eventName: string;
payload: EventCliSessionStopped;
}[];