2025-02-21 08:00:49 +00:00
|
|
|
type Param = {
|
|
|
|
distDir?: string;
|
|
|
|
};
|
2025-02-03 12:41:13 +00:00
|
|
|
/**
|
|
|
|
* # Grab the current distribution directory
|
|
|
|
* @description This returns the relative path from the CWD. Eg `./.dist/build-1`
|
|
|
|
* @returns {string | undefined}
|
|
|
|
*/
|
2025-02-21 08:00:49 +00:00
|
|
|
export default function grabDist(params?: Param): string | undefined;
|
|
|
|
export {};
|