You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[...(rsig.declaration?.typeParameters as NodeArray<TypeParameterDeclaration> ?? []), ...(sig.declaration?.typeParameters as NodeArray<TypeParameterDeclaration> ?? [])],
48257
+
[...(rsig.declaration?.parameters as NodeArray<ParameterDeclaration> ?? []), ...(sig.declaration?.parameters as NodeArray<ParameterDeclaration> ?? [])],
48258
+
rsig.declaration?.type as TypeNode,
48260
48259
undefined
48261
48260
);
48262
48261
newDecl.jsDoc = pipeable.jsDoc;
@@ -48379,7 +48378,6 @@ export function createTypeChecker(host: TypeCheckerHost): TypeChecker {
48379
48378
isFunctionTypeNode(sig.declaration.type) &&
48380
48379
sig.declaration.type.parameters.length === 1)
48381
48380
) {
48382
-
const pipeableWithType = pipeable as VariableDeclarationWithFunctionType
48383
48381
if (signatures.find(isPipeableSelfARestParameter)) {
0 commit comments