Skip to content

Commit dac16e4

Browse files
committed
fix: make fields optional
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 5a74e00 commit dac16e4

File tree

1 file changed

+8
-8
lines changed
  • lib/node_modules/@stdlib/stats/base/ztest/one-sample/results/struct-factory/docs/types

1 file changed

+8
-8
lines changed

lib/node_modules/@stdlib/stats/base/ztest/one-sample/results/struct-factory/docs/types/index.d.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25,42 +25,42 @@ interface Results<T> {
2525
/**
2626
* Boolean indicating whether the null hypothesis was rejected.
2727
*/
28-
rejected: boolean;
28+
rejected?: boolean;
2929

3030
/**
3131
* Alternative hypothesis.
3232
*/
33-
alternative: string;
33+
alternative?: string;
3434

3535
/**
3636
* Significance level.
3737
*/
38-
alpha: number;
38+
alpha?: number;
3939

4040
/**
4141
* p-value.
4242
*/
43-
pValue: number;
43+
pValue?: number;
4444

4545
/**
4646
* Test statistic.
4747
*/
48-
statistic: number;
48+
statistic?: number;
4949

5050
/**
5151
* Confidence interval.
5252
*/
53-
ci: T;
53+
ci?: T;
5454

5555
/**
5656
* Value of the mean under the null hypothesis
5757
*/
58-
nullValue: number;
58+
nullValue?: number;
5959

6060
/**
6161
* Standard error of the mean.
6262
*/
63-
sd: number;
63+
sd?: number;
6464
}
6565

6666
/**

0 commit comments

Comments
 (0)