@bluecadet/launchpad-cli
Version:
CLI for @bluecadet/launchpad utilities
15 lines • 391 B
JavaScript
/**
* Applies defaults to the provided launchpad config.
*/
export function resolveLaunchpadConfig(config) {
// NOTE: at the moment, there are no defaults to apply
// so this function is just a passthrough
return config;
}
/**
* Type definition for the config object.
*/
export function defineConfig(config) {
return config;
}
//# sourceMappingURL=launchpad-config.js.map