Skip to content

Commit f83da1e

Browse files
committed
fix: use interface rather than class definition
--- 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: passed - task: lint_license_headers status: passed ---
1 parent 668e314 commit f83da1e

File tree

6 files changed

+18
-6
lines changed

6 files changed

+18
-6
lines changed

lib/node_modules/@stdlib/complex/float64/base/assert/is-almost-equal/docs/types/index.d.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@
1818

1919
// TypeScript Version: 4.1
2020

21-
import Complex128 = require( '@stdlib/complex/float64/ctor' );
21+
/// <reference types="@stdlib/types"/>
22+
23+
import { Complex128 } from '@stdlib/types/complex';
2224

2325
/**
2426
* Tests whether two double-precision complex floating-point numbers are approximately equal within a specified number of ULPs (units in the last place).

lib/node_modules/@stdlib/complex/float64/base/assert/is-almost-same-value/docs/types/index.d.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@
1818

1919
// TypeScript Version: 4.1
2020

21-
import Complex128 = require( '@stdlib/complex/float64/ctor' );
21+
/// <reference types="@stdlib/types"/>
22+
23+
import { Complex128 } from '@stdlib/types/complex';
2224

2325
/**
2426
* Tests whether two double-precision complex floating-point numbers are approximately the same value within a specified number of ULPs (units in the last place).

lib/node_modules/@stdlib/complex/float64/base/assert/is-equal/docs/types/index.d.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@
1818

1919
// TypeScript Version: 4.1
2020

21-
import Complex128 = require( '@stdlib/complex/float64/ctor' );
21+
/// <reference types="@stdlib/types"/>
22+
23+
import { Complex128 } from '@stdlib/types/complex';
2224

2325
/**
2426
* Tests whether two double-precision complex floating-point numbers are equal.

lib/node_modules/@stdlib/complex/float64/base/assert/is-not-equal/docs/types/index.d.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@
1818

1919
// TypeScript Version: 4.1
2020

21-
import Complex128 = require( '@stdlib/complex/float64/ctor' );
21+
/// <reference types="@stdlib/types"/>
22+
23+
import { Complex128 } from '@stdlib/types/complex';
2224

2325
/**
2426
* Tests whether two double-precision complex floating-point numbers are not equal.

lib/node_modules/@stdlib/complex/float64/base/assert/is-same-value-zero/docs/types/index.d.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@
1818

1919
// TypeScript Version: 4.1
2020

21-
import Complex128 = require( '@stdlib/complex/float64/ctor' );
21+
/// <reference types="@stdlib/types"/>
22+
23+
import { Complex128 } from '@stdlib/types/complex';
2224

2325
/**
2426
* Tests whether two double-precision complex floating-point numbers are the same value.

lib/node_modules/@stdlib/complex/float64/base/assert/is-same-value/docs/types/index.d.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@
1818

1919
// TypeScript Version: 4.1
2020

21-
import Complex128 = require( '@stdlib/complex/float64/ctor' );
21+
/// <reference types="@stdlib/types"/>
22+
23+
import { Complex128 } from '@stdlib/types/complex';
2224

2325
/**
2426
* Tests whether two double-precision complex floating-point numbers are the same value.

0 commit comments

Comments
 (0)