Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps-dev): bump @types/node from 22.4.1 to 22.5.0 #253

Merged
merged 1 commit into from
Sep 1, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions yarn.lock
Original file line number Diff line number Diff line change
@@ -310,11 +310,11 @@ __metadata:
linkType: hard

"@types/node@npm:^22.2.0":
version: 22.4.1
resolution: "@types/node@npm:22.4.1"
version: 22.5.0
resolution: "@types/node@npm:22.5.0"
dependencies:
undici-types: "npm:~6.19.2"
checksum: 10c0/e42607438fcbd3a6aebd09084868fa0b22a4b0daf9eda79ed615df7ff8ae95e35ea56e090e1f3140ebae76b640abe42d4a6d5b60c0819eadf499adca737305b6
checksum: 10c0/45aa75c5e71645fac42dced4eff7f197c3fdfff6e8a9fdacd0eb2e748ff21ee70ffb73982f068a58e8d73b2c088a63613142c125236cdcf3c072ea97eada1559
languageName: node
linkType: hard


Unchanged files with check annotations Beta

} else if (TsFourSeven.predicate(context)) {
return TsFourSeven.handler(context, prop);
} else {
return (<any>target)[prop];

Check warning on line 26 in src/harmony/harmony-factory.ts

GitHub Actions / lint

Unexpected any. Specify a different type
}
},
}) as HarmonyFactory;
// @formatter:off
// @prettier-ignore
export type DownSampleTsTypes<TypeMap extends [any, any][], Tuple extends [...unknown[]]> = {

Check warning on line 7 in src/harmony/utils.ts

GitHub Actions / lint

Unexpected any. Specify a different type

Check warning on line 7 in src/harmony/utils.ts

GitHub Actions / lint

Unexpected any. Specify a different type
[i in keyof Tuple]: Tuple[i] extends any[]

Check warning on line 8 in src/harmony/utils.ts

GitHub Actions / lint

Unexpected any. Specify a different type
? DownSampleTsTypes<TypeMap, Tuple[i]>
: DownSampleTsType<TypeMap, Tuple[i]>;
} & {
};
// @prettier-ignore
type DownSampleTsType<TypeMap extends [any, any][], T> =

Check warning on line 16 in src/harmony/utils.ts

GitHub Actions / lint

Unexpected any. Specify a different type

Check warning on line 16 in src/harmony/utils.ts

GitHub Actions / lint

Unexpected any. Specify a different type
T extends Exclude<TypeMap[number][0], undefined> ? Extract<TypeMap[number], [T, any]>[1] : T;

Check warning on line 17 in src/harmony/utils.ts

GitHub Actions / lint

Unexpected any. Specify a different type
// @formatter:on
// endregion
};
}
default: {
return (...args: any) => (<any>factory)[prop](...args);

Check warning on line 114 in src/harmony/versions/four-seven.ts

GitHub Actions / lint

Unexpected any. Specify a different type

Check warning on line 114 in src/harmony/versions/four-seven.ts

GitHub Actions / lint

Unexpected any. Specify a different type
}
}
}
export function downSample<T extends [...unknown[]]>(...args: T): DownSampleTsTypes<TypeMap, T> {
return <any>args;

Check warning on line 120 in src/harmony/versions/four-seven.ts

GitHub Actions / lint

Unexpected any. Specify a different type
}
// endregion