@stacksjs/launchpad
Version:
Like Homebrew, but faster.
11 lines • 396 B
TypeScript
/**
* 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
}