neex
Version:
Neex - Modern Fullstack Framework Built on Express and Next.js. Fast to Start, Easy to Build, Ready to Deploy
26 lines • 567 B
TypeScript
export interface RunOptions {
parallel: boolean;
maxParallel?: number;
printOutput: boolean;
color: boolean;
showTiming: boolean;
prefix: boolean;
stopOnError: boolean;
}
export interface RunResult {
command: string;
success: boolean;
code: number | null;
startTime: Date;
endTime: Date | null;
duration?: number;
error?: Error;
}
export interface CommandOutput {
command: string;
type: 'stdout' | 'stderr';
data: string;
timestamp: Date;
}
//# sourceMappingURL=neex.d.ts.map