We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent deff338 commit 1cfdb61Copy full SHA for 1cfdb61
lib/node_modules/@stdlib/math/base/tools/evalpoly-compile/docs/types/index.d.ts
@@ -18,6 +18,10 @@
18
19
// TypeScript Version: 4.1
20
21
+/// <reference types="@stdlib/types"/>
22
+
23
+import { Collection } from '@stdlib/types/array';
24
25
/**
26
* Interface describing function options.
27
*/
@@ -39,7 +43,7 @@ interface Options {
39
43
* var str = compile( [ 3.0, 2.0, 1.0 ] );
40
44
* // returns <string>
41
45
42
-declare function compile( c: Array<number>, options?: Options ): string;
46
+declare function compile( c: Collection<number>, options?: Options ): string;
47
48
49
// EXPORTS //
0 commit comments