UNPKG
rulepilot
Version:
latest (1.4.9)
1.4.9
1.4.8
1.4.7
1.4.6
1.4.5
1.4.4
1.4.3
1.4.2
1.4.1
1.4.0
1.3.1
1.3.0
1.2.4
1.2.3
1.2.2
1.2.1
1.2.0-alpha.3
1.2.0-alpha.2
1.2.0-alpha.1
1.1.12
1.1.11
1.1.10
1.1.9
1.1.8
Rule parsing engine for JSON rules
github.com/andrewbrg/rulepilot
andrewbrg/rulepilot
rulepilot
/
dist
/
errors
/
rule.error.d.ts
9 lines
(8 loc)
•
274 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import { ValidationResult }
from
"../services"
; export
declare
class
RuleError
extends
Error
{
constructor
(
validationResult
: ValidationResult);
/** The name/type of the error. */
type:
string
;
/** The element that caused the error. */
element:
object
; }