(handleId: string)
| 112 | } |
| 113 | |
| 114 | function assertValidWorkspaceTurnTaskId(handleId: string): void { |
| 115 | assert( |
| 116 | isWorkspaceTurnTaskId(handleId), |
| 117 | "workspace turn handle IDs must use the wst_ prefix and safe filename characters" |
| 118 | ); |
| 119 | } |
| 120 | |
| 121 | export class TaskHandleStore { |
| 122 | constructor(private readonly config: Config) {} |
no test coverage detected