Files
memecoin-botV2/.pnpm-store/v10/files/d7/7239df6b01f6ab77977b046d65ae81ce12cb6e1bec81fb419ecb7a640a5248a6297a94923b43a08db65afb291c29abeed6cd74705965e3c3319468fc8fff46

11 lines
302 B
Plaintext

/**
* Shared utilities for the TypeScript API client.
*/
import getExePath from "#getExePath";
export function isSpawnOptions(options) {
return !("pipe" in options);
}
export function resolveExePath(options) {
return options.tsserverPath ?? getExePath();
}
//# sourceMappingURL=options.js.map