You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`Min`| From the `min` of `range`| A generic type variable `Min` constrained by the [`number`][ts-number] type, by default of value captured from optional `min` of the provided `range` that indicates the **minimum** range of the provided `value` via the return type `value is NumberBetween<Min, Max, Type>`. |
2715
-
|`Max`| From the `max` of `range`| A generic type variable `Max` constrained by the [`number`][ts-number] type, by default of value captured from optional `max` of the provided `range` that indicates the **maximum** range of the provided `value` via the return type `value is NumberBetween<Min, Max, Type>`. |
|`value: any`| The `value` of any type that is checked against a [`number`][js-number] type or an instance of a [`Number`][js-number] within the specified **range** and the result of its check is passed to the [`expect()`][jasmine-expect] function of jasmine. |
2722
-
|`range: { min?: Min, max?: Max }`| An [`object`][js-object] of optional **minimum** and **maximum**`range` of a given `value`. |
2715
+
|`min: Min`| The **minimum** range of generic type variable `Min` of the given `value`. |
2716
+
|`max: Max`| The **maximum** range of generic type variable `Max` of the given `value`. |
2723
2717
|`expected: jasmine.Expected<boolean>`| The expected value of a [`boolean`][js-boolean] to compare against the result of the `value` check that is passed to the `toBe()` method of [`jasmine.Matchers`][jasmine-matchers]. |
2724
2718
|`expectationFailOutput: any`| An additional message when the matcher fails, by default, states the `value` should be (or not) a [`number`][js-number] type or an instance of a [`Number`][js-number] between the range of **minimum** and **maximum**. |
|`value: any`| The `value` of any type that is checked against a [`string`][js-string] type or an instance of a [`String`][js-string] of the specified **length** and the result of its check is passed to the [`expect()`][jasmine-expect] function of jasmine. |
3392
-
|`length: { min: Min, max: Max }`| An [`object`][js-object] of optional **minimum** and **maximum**`length` of the given `value`. |
3386
+
|`min: Min`| The **minimum** length of generic type variable `Min` of a given `value`. |
3387
+
|`max: Max`| The **maximum** length of generic type variable `Max` of a given `value`. |
3393
3388
|`expected: jasmine.Expected<boolean>`| The expected value of a [`boolean`][js-boolean] to compare against the result of the `value` check that is passed to the `toBe()` method of [`jasmine.Matchers`][jasmine-matchers]. |
3394
3389
|`expectationFailOutput: any`| An additional message when the matcher fails, by default, states the `value` should be (or not) a [`string`][js-string] type or an instance of a [`String`][js-string] of the **length** between the given **minimum** and **maximum**. |
0 commit comments