Skip to content

Commit 9ca500d

Browse files
committed
🧹 Removed dumb comment block.
1 parent cfd2cfc commit 9ca500d

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

‎src/task-queue-descriptor.ts

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,6 @@ export interface TaskQueueDescriptor<I, O> {
1111
readonly postcondition?: (input: I, output: O) => boolean;
1212
}
1313

14-
/**
15-
* @summary
16-
* Creates a descriptor for a task queue.
17-
* @description
18-
* This is a convenience function that allows you to create a descriptor for a task queue.
19-
* It's handy for use when manual typing is inconvenient.
20-
* @param descriptor - The descriptor to create.
21-
* @returns The typed descriptor, unchanged.
22-
* @typeParam I - The type of the input to the task queue.
23-
* @typeParam O - The type of the output of the task queue.
24-
*/
2514
export const TaskQueueDescriptor = <I, O>(
2615
descriptor: TaskQueueDescriptor<I, O>
2716
) => descriptor;

0 commit comments

Comments
 (0)