/** * Path utilities that work with both regular execution and Bun compiled binaries * Provides __dirname and __filename equivalents without using import.meta.url * which breaks bytecode compilation */ /** * Get the directory name of the current module * Works around import.meta.url issues in Bun compiled binaries */ export declare function getDirname(): string; /** * Get the filename of the current module * Works around import.meta.url issues in Bun compiled binaries */ export declare function getFilename(): string; /** * Check if the current module is the main entry point * Works around import.meta.main issues in Bun compiled binaries */ export declare function isMainModule(): boolean; /** * Detect if running as a Bun compiled executable */ export declare function isCompiledBinary(): boolean; //# sourceMappingURL=paths.d.ts.map