Skip to content

Commit 0dc02b9

Browse files
committed
Add type definition
1 parent b490aa6 commit 0dc02b9

File tree

3 files changed

+101
-0
lines changed

3 files changed

+101
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
/*
2+
* @license Apache-2.0
3+
*
4+
* Copyright (c) 2021 The Stdlib Authors.
5+
*
6+
* Licensed under the Apache License, Version 2.0 (the "License");
7+
* you may not use this file except in compliance with the License.
8+
* You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing, software
13+
* distributed under the License is distributed on an "AS IS" BASIS,
14+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
* See the License for the specific language governing permissions and
16+
* limitations under the License.
17+
*/
18+
19+
// TypeScript Version: 2.0
20+
21+
/// <reference types="@stdlib/types"/>
22+
23+
import { ComplexLike } from '@stdlib/types/object';
24+
25+
/**
26+
* Returns the real and imaginary components of a complex number.
27+
*
28+
* @param z - complex number
29+
* @returns real and imaginary components
30+
*
31+
* @example
32+
* var Complex128 = require( `@stdlib/complex/float64` );
33+
*
34+
* var z = new Complex128( 5.0, 3.0 );
35+
*
36+
* var out = reim( z );
37+
* // returns <Float64Array>[ 5.0, 3.0 ]
38+
*
39+
* @example
40+
* var Complex64 = require( `@stdlib/complex/float32` );
41+
*
42+
* var z = new Complex64( 5.0, 3.0 );
43+
*
44+
* var out = reim( z );
45+
* // returns <Float32Array>[ 5.0, 3.0 ]
46+
*/
47+
declare function reim( z: ComplexLike ): Float64Array | Float32Array;
48+
49+
50+
// EXPORTS //
51+
52+
export = reim;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
/*
2+
* @license Apache-2.0
3+
*
4+
* Copyright (c) 2021 The Stdlib Authors.
5+
*
6+
* Licensed under the Apache License, Version 2.0 (the "License");
7+
* you may not use this file except in compliance with the License.
8+
* You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing, software
13+
* distributed under the License is distributed on an "AS IS" BASIS,
14+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
* See the License for the specific language governing permissions and
16+
* limitations under the License.
17+
*/
18+
19+
import reim = require( './index' );
20+
import Complex128 = require( '@stdlib/complex/float64' );
21+
import Complex64 = require( '@stdlib/complex/float32' );
22+
23+
24+
// TESTS //
25+
26+
// The function returns a floating-point typed array...
27+
{
28+
reim( new Complex128( 5.0, 3.0 ) ); // $ExpectType Float64Array | Float32Array
29+
reim( new Complex64( 5.0, 3.0 ) ); // $ExpectType Float64Array | Float32Array
30+
reim( { 're': 5.0, 'im': 3.0 } ); // $ExpectType Float64Array | Float32Array
31+
}
32+
33+
// The compiler throws an error if the function is provided an argument that is not a complex number...
34+
{
35+
reim( 'abc' ); // $ExpectError
36+
reim( 123 ); // $ExpectError
37+
reim( true ); // $ExpectError
38+
reim( false ); // $ExpectError
39+
reim( [] ); // $ExpectError
40+
reim( {} ); // $ExpectError
41+
reim( ( x: number ): number => x ); // $ExpectError
42+
}
43+
44+
// The compiler throws an error if the function is provided an unsupported number of arguments...
45+
{
46+
reim(); // $ExpectError
47+
reim( new Complex128( 5.0, 3.0 ), 123 ); // $ExpectError
48+
}

lib/node_modules/@stdlib/complex/reim/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
"lib": "./lib",
2222
"test": "./test"
2323
},
24+
"types": "./docs/types",
2425
"scripts": {},
2526
"homepage": "https://github.com/stdlib-js/stdlib",
2627
"repository": {

0 commit comments

Comments
 (0)