@ledgerhq/live-common
Version:
Common ground for the Ledger Live apps
9 lines • 303 B
TypeScript
import { Feature } from "@ledgerhq/types-live";
export type FeatureFlagsGetParams = {
featureFlagIds: string[];
};
export type FeatureFlagsGetResponse = {
features: Record<string, Feature<unknown> | null>;
};
export type MethodIds = "custom.featureFlags.get";
//# sourceMappingURL=types.d.ts.map