query re: bmf schema intent #650
SignpostMarv
started this conversation in
General
Replies: 1 comment 2 replies
-
|
The intent is closer to the first example: type BMF = {
[benchmark: string]: {
[measure: string]: (
{
value: number,
}
| {
value: number,
lower_value: number,
}
| {
value: number,
upper_value: number,
}
| {
value: number,
lower_value: number,
upper_value: number,
}
),
}
}; |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Is it intended to be:
or
p.s. avoiding this because it means
number | undefinedBeta Was this translation helpful? Give feedback.
All reactions