X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;ds=inline;f=src%2Futility-types.ts;fp=src%2Futility-types.ts;h=3d5673f93111d552a4cdce0364d7c036cf3e175e;hb=edbc15c62f491f28a09a03a4cc134a8a9522059e;hp=b2470bea17df1e283ee492a4346f46bf6944a13f;hpb=669796341394caefd889b211ef39cd2bb100644d;p=poolifier.git diff --git a/src/utility-types.ts b/src/utility-types.ts index b2470bea..3d5673f9 100644 --- a/src/utility-types.ts +++ b/src/utility-types.ts @@ -118,12 +118,14 @@ export interface MessageValue readonly taskPerformance?: TaskPerformance /** * Task function operation: - * - `'has'` - Check if a task function exists. * - `'add'` - Add a task function. * - `'delete'` - Delete a task function. * - `'default'` - Set a task function as default. */ - readonly taskFunctionOperation?: 'has' | 'add' | 'remove' | 'default' + readonly taskFunctionOperation?: 'add' | 'remove' | 'default' + /** + * Whether the task function operation is successful or not. + */ readonly taskFunctionOperationStatus?: boolean /** * Task function serialized to string.