Type alias ParseResult<T>

ParseResult<T>: { command?: undefined; error?: undefined; isValid: false } | { command?: undefined; error: ServerErrorResponse; isValid: true } | { command: T; error?: undefined; isValid: true }

Type Parameters

Generated using TypeDoc