UNPKG
@usebool/sdk-js
Version:
latest (1.0.0)
1.0.0
0.3.2
0.3.1
0.3.0
0.2.1
0.2.0
0.1.12
0.1.11
0.1.10
0.1.9
0.1.7
0.1.6
0.1.5
Core JS SDK for Bool feature flag system
usebool.com
BoolOfficial/sdks
@usebool/sdk-js
/
lib
/
getFeatures.d.ts
4 lines
(3 loc)
•
224 B
TypeScript
View Raw
1
2
3
4
import
type
{
FeatureFlag
,
FeatureFlagList
}
from
'./types'
;
export
declare
const
getFeatures
:
(
idToken
:
string
) =>
Promise
<
FeatureFlag
[]>;
export
declare
const
composeFeatureFlags
:
(
data
:
FeatureFlagList
) =>
FeatureFlag
[];