remoteConfig.ts 295 B

12345678910111213141516
  1. export type RemoteConfigFeature = {
  2. key: string;
  3. value: string | undefined;
  4. };
  5. export type RemoteConfigOptions = {
  6. sample_rate: number;
  7. traces_sample_rate: number;
  8. };
  9. export type RemoteConfig = {
  10. data: {
  11. features: RemoteConfigFeature[];
  12. options: RemoteConfigOptions;
  13. };
  14. };