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 c12e373 commit 8060cafCopy full SHA for 8060caf
lib/node_modules/@stdlib/math/base/tools/evalpoly-compile-c/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
*/
@@ -44,7 +48,7 @@ interface Options {
44
48
* var str = compile( [ 3.0, 2.0, 1.0 ] );
45
49
* // returns <string>
46
50
47
-declare function compile( c: Array<number>, options?: Options ): string;
51
+declare function compile( c: Collection<number>, options?: Options ): string;
52
53
54
// EXPORTS //
0 commit comments