bpms_site/.svn/pristine/c9/c991b68c6b6171104fa16273afa77c6d9a0bb0d3.svn-base
2025-11-02 16:38:49 +03:30

14 lines
419 B
Plaintext

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