Skip to content

Commit cd68280

Browse files
AiSirachcha21autofix-ci[bot]TkDodo
authoredJul 26, 2024··
fix(query-core) export Mutation class instead of exporting it as a type (#7793)
* fix(query-core) export Mutation class instead of exporting it as a type previously, attempting to create a Mutation in a vanilla JS project required the use of the Mutation class constructor but due to it being exported as a type, we run into a runtime error stating that the Mutation type is not a class resulting in us not being able to proceed despite the compilation process in TypeScript not throwing an issue. This change exposes the class instead of the type in order to accomodate this requirement in vanilla JS projects fixes `Mutation` class isn't exposed from @tanstack/query-core #7785 * ci: apply automated fixes --------- Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: Dominik Dorfmeister <office@dorfmeister.cc>
1 parent fec324f commit cd68280

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎packages/query-core/src/index.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ export {
3535
export * from './types'
3636
export type { QueryState } from './query'
3737
export { Query } from './query'
38-
export type { Mutation, MutationState } from './mutation'
38+
export type { MutationState } from './mutation'
39+
export { Mutation } from './mutation'
3940
export type {
4041
DehydrateOptions,
4142
DehydratedState,

0 commit comments

Comments
 (0)
Please sign in to comment.