UNPKG

@baseplate-dev/sync

Version:

Library for syncing Baseplate descriptions

13 lines 301 B
/** * Create a new task phase * @param name - The name of the phase * @param options - The options for the phase * @returns The new task phase */ export function createTaskPhase(name, options) { return { name, options: options ?? {}, }; } //# sourceMappingURL=types.js.map