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 1818
1919// TypeScript Version: 4.1
2020
21+ /// <reference types="@stdlib/types"/>
22+
23+ import { Collection } from '@stdlib/types/array' ;
24+
2125/**
2226* Interface describing function options.
2327*/
2428interface Options {
2529 /**
2630 * Input value floating-point data type (e.g., `double` or `float`). Default: `'double'`.
2731 */
28- dtype ?: string ;
32+ dtype ?: 'double' | 'float' ;
2933
3034 /**
3135 * Function name. Default: `'evalpoly'`.
@@ -48,7 +52,7 @@ interface Options {
4852* var str = compile( P, Q );
4953* // returns <string>
5054*/
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 ;
5256
5357
5458// EXPORTS //
You can’t perform that action at this time.
0 commit comments