UNPKG

zenstack

Version:

FullStack enhancement for Prisma ORM: seamless integration from database to UI

14 lines (13 loc) 476 B
import { ExecSyncOptions } from 'child_process'; /** * Utility for executing command synchronously and prints outputs on current console */ export declare function execSync(cmd: string, options?: Omit<ExecSyncOptions, 'env'> & { env?: Record<string, string>; }): void; /** * Utility for running package commands through npx/bunx */ export declare function execPackage(cmd: string, options?: Omit<ExecSyncOptions, 'env'> & { env?: Record<string, string>; }): void;