include node_modules so release .zip is deployable

This commit is contained in:
2023-11-24 17:44:25 -05:00
parent 6c86cfe5d2
commit 8b11c41267
8963 changed files with 874175 additions and 1 deletions
+36
View File
@@ -0,0 +1,36 @@
/**
* Bessel function of the 1st kind.
*
* @reference https://en.wikipedia.org/wiki/Bessel_function#Bessel_functions_of_the_first_kind:_J.CE.B1
*/
export declare function cyl_bessel_j(n: number, x: number): number;
/**
* Bessel function of the 2nd kind.
*
* @reference https://en.wikipedia.org/wiki/Bessel_function#Bessel_functions_of_the_second_kind:_Y.CE.B1
*/
export declare function cyl_neumann(v: number, x: number): number;
/**
* Spherical Bessel function of the 1st kind.
*
* @reference https://en.wikipedia.org/wiki/Bessel_function#Spherical_Bessel_functions:_jn.2C_yn
*/
export declare function sph_bessel(n: number, x: number): number;
/**
* Spherical Bessel function of the 2nd kind.
*
* @reference https://en.wikipedia.org/wiki/Bessel_function#Spherical_Bessel_functions:_jn.2C_yn
*/
export declare function sph_neumann(n: number, x: number): number;
/**
* Modified cylindrical Bessel function of the 1st kind.
*
* @reference https://en.wikipedia.org/wiki/Bessel_function#Modified_Bessel_functions:_I.CE.B1_.2C_K.CE.B1
*/
export declare function cyl_bessel_i(n: number, x: number): number;
/**
* Modified cylindrical Bessel function of the 2nd kind.
*
* @reference https://en.wikipedia.org/wiki/Bessel_function#Modified_Bessel_functions:_I.CE.B1_.2C_K.CE.B1
*/
export declare function cyl_bessel_k(n: number, x: number): number;