Skip to content

Commit b903bbb

Browse files
Make all typed assignment getters explicitly public (#56)
1 parent 75c2ea1 commit b903bbb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/client/eppo-client.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ export default class EppoClient implements IEppoClient {
211211
);
212212
}
213213

214-
getBoolAssignment(
214+
public getBoolAssignment(
215215
flagKey: string,
216216
subjectKey: string,
217217
subjectAttributes: Record<string, AttributeType>,
@@ -228,7 +228,7 @@ export default class EppoClient implements IEppoClient {
228228
);
229229
}
230230

231-
getIntegerAssignment(
231+
public getIntegerAssignment(
232232
flagKey: string,
233233
subjectKey: string,
234234
subjectAttributes: Record<string, AttributeType>,
@@ -245,7 +245,7 @@ export default class EppoClient implements IEppoClient {
245245
);
246246
}
247247

248-
getNumericAssignment(
248+
public getNumericAssignment(
249249
flagKey: string,
250250
subjectKey: string,
251251
subjectAttributes: Record<string, AttributeType>,

0 commit comments

Comments
 (0)