FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

feat: update `fft/base/fftpack` TypeScript declarations · stdlib-js/stdlib@6356b69 · GitHub

Commit 6356b69

Browse files
authored
feat: update fft/base/fftpack TypeScript declarations
PR-URL: #14583 Reviewed-by: Athan Reines <kgryte@gmail.com>
1 parent 616ab2f commit 6356b69

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

  • lib/node_modules/@stdlib/fft/base/fftpack/docs/types

‎lib/node_modules/@stdlib/fft/base/fftpack/docs/types/index.d.ts‎

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,25 @@
2020

2121
/* eslint-disable max-lines */
2222

23+
import float32 = require( '@stdlib/fft/base/fftpack/float32' );
24+
import float64 = require( '@stdlib/fft/base/fftpack/float64' );
2325
import generic = require( '@stdlib/fft/base/fftpack/generic' );
2426
import ndarray = require( '@stdlib/fft/base/fftpack/ndarray' );
2527

2628
/**
2729
* Interface describing the `fftpack` namespace.
2830
*/
2931
interface Namespace {
32+
/**
33+
* FFTPACK routines for fast Fourier transforms on single-precision floating-point arrays.
34+
*/
35+
float32: typeof float32;
36+
37+
/**
38+
* FFTPACK routines for fast Fourier transforms on double-precision floating-point arrays.
39+
*/
40+
float64: typeof float64;
41+
3042
/**
3143
* FFTPACK routines for fast Fourier transforms on generic collections.
3244
*/

0 commit comments

Comments
 (0)

Back | FazBrowse Home | New Git URL