(value: unknown)
| 65 | export type ComputerUseErrorCode = (typeof COMPUTER_USE_ERROR_CODES)[number]; |
| 66 | |
| 67 | export function isComputerUseErrorCode(value: unknown): value is ComputerUseErrorCode { |
| 68 | return ( |
| 69 | typeof value === 'string' && (COMPUTER_USE_ERROR_CODES as readonly string[]).includes(value) |
| 70 | ); |
| 71 | } |
| 72 | |
| 73 | export interface CuPoint { |
| 74 | x: number; |
no outgoing calls
no test coverage detected