Skip to content

Commit 4e2fe4f

Browse files
authored
fix: make properties required in interface
PR-URL: stdlib-js#7643 Reviewed-by: Athan Reines <kgryte@gmail.com>
1 parent b3954ec commit 4e2fe4f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • lib/node_modules/@stdlib/stats/base/ztest/two-sample/results/float32/docs/types

lib/node_modules/@stdlib/stats/base/ztest/two-sample/results/float32/docs/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,12 +125,12 @@ declare class ResultsStruct {
125125
/**
126126
* Sample mean of `x`.
127127
*/
128-
xmean?: number;
128+
xmean: number;
129129

130130
/**
131131
* Sample mean of `y`.
132132
*/
133-
ymean?: number;
133+
ymean: number;
134134

135135
/**
136136
* Test method.

0 commit comments

Comments
 (0)