File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 11import { EvaluationContext , IdentityEvaluationContext , TraitEvaluationContext } from "./evaluation-context" ;
2+ import { FlagSource } from "./flagsmith-core" ;
23
34type IFlagsmithValue < T = string | number | boolean | null > = T
45
@@ -84,13 +85,13 @@ export type ISentryClient = {
8485} | undefined ;
8586
8687
87- export { FlagSource } from './flagsmith-core' ;
88+ export { FlagSource } ;
8889
8990export declare type LoadingState = {
9091 error : Error | null , // Current error, resets on next attempt to fetch flags
9192 isFetching : boolean , // Whether there is a current request to fetch server flags
9293 isLoading : boolean , // Whether any flag data exists
93- source : FlagSource //Indicates freshness of flags
94+ source : FlagSource // Indicates freshness of flags
9495}
9596
9697export type OnChange < F extends string = string > = ( previousFlags : IFlags < FKey < F > > | null , params : IRetrieveInfo , loadingState :LoadingState ) => void
You can’t perform that action at this time.
0 commit comments