index.d.ts 313 B

1234
  1. import { OrgFeatureFlagResponse } from './types';
  2. import { Options } from '../types';
  3. export declare function isFeatureFlagSupportedForOrg(featureFlag: string, org: any): Promise<OrgFeatureFlagResponse>;
  4. export declare function hasFeatureFlag(featureFlag: string, options: Options): Promise<boolean | undefined>;