/**
* 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 functioncreateTaskPhase(name, options) {
return {
name,
options: options ?? {},
};
}
//# sourceMappingURL=types.js.map