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
/
types
/
introspection.d.ts
11 lines
(10 loc)
•
250 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{
Constraint
}
from
"./rule"
;
type
IntrospectionResultSubject
= {
subject
:
string
;
values
:
Omit
<
Constraint
,
"field"
>[]; };
export
type
IntrospectionResult
<R> = {
result
: R;
subjects
:
IntrospectionResultSubject
[]; };
export
{};