UNPKG

@stacksjs/launchpad

Version:
11 lines 396 B
/** * Detect if this is a Laravel project and provide setup assistance */ export declare function detectLaravelProject(dir: string): Promise<{ isLaravel: boolean, suggestions: string[] }>; export declare function dump(dir: string, options?: DumpOptions): Promise<void>; export declare interface DumpOptions { dryrun?: boolean quiet?: boolean shellOutput?: boolean skipGlobal?: boolean }