File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
lib/node_modules/@stdlib/math/base/tools/evalrational-compile-c/docs/types Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change 18
18
19
19
// TypeScript Version: 4.1
20
20
21
+ /// <reference types="@stdlib/types"/>
22
+
23
+ import { Collection } from '@stdlib/types/array' ;
24
+
21
25
/**
22
26
* Interface describing function options.
23
27
*/
24
28
interface Options {
25
29
/**
26
30
* Input value floating-point data type (e.g., `double` or `float`). Default: `'double'`.
27
31
*/
28
- dtype ?: string ;
32
+ dtype ?: 'double' | 'float' ;
29
33
30
34
/**
31
35
* Function name. Default: `'evalpoly'`.
@@ -48,7 +52,7 @@ interface Options {
48
52
* var str = compile( P, Q );
49
53
* // returns <string>
50
54
*/
51
- declare function compile ( P : Array < number > , Q : Array < number > , options ?: Options ) : string ;
55
+ declare function compile ( P : Collection < number > , Q : Collection < number > , options ?: Options ) : string ;
52
56
53
57
54
58
// EXPORTS //
You can’t perform that action at this time.
0 commit comments