Skip to content

Commit ef54401

Browse files
committed
Remove DataMasking interface
1 parent 7a14c90 commit ef54401

3 files changed

Lines changed: 1 addition & 9 deletions

File tree

src/core/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,6 @@ export {
137137

138138
/* Masking */
139139
export type {
140-
DataMasking,
141140
FragmentType,
142141
MaybeMasked,
143142
Unmasked,

src/masking/index.ts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,4 @@
1-
export type {
2-
DataMasking,
3-
FragmentType,
4-
MaybeMasked,
5-
Unmasked,
6-
} from "./types.js";
1+
export type { FragmentType, MaybeMasked, Unmasked } from "./types.js";
72
export type { GraphQLCodegenDataMasking } from "./GraphQLCodegenDataMasking.js";
83
export { disableWarningsSlot } from "./utils.js";
94
export { maskFragment } from "./maskFragment.js";

src/masking/types.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ import type { ApplyHKTImplementationWithDefault } from "@apollo/client/utilities
33

44
import type { PreserveTypes } from "./PreserveTypes.js";
55

6-
export interface DataMasking {}
7-
86
export type FragmentType<TData> = ApplyHKTImplementationWithDefault<
97
TypeOverrides,
108
"FragmentType",

0 commit comments

Comments
 (0)