Merge pull request #3914 from tommoor/patch-1

fix: Typescript error in usage
This commit is contained in:
Sidharth Vinod 2022-12-15 21:45:06 +05:30 committed by GitHub
commit 01039c574c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -194,7 +194,10 @@ export const isSubstringInArray = function (str: string, arr: string[]): number
* @param defaultCurve - The default curve to return
* @returns The curve factory to use
*/
export function interpolateToCurve(interpolate?: string, defaultCurve: CurveFactory): CurveFactory {
export function interpolateToCurve(
interpolate: string | undefined,
defaultCurve: CurveFactory
): CurveFactory {
if (!interpolate) {
return defaultCurve;
}