@expofp/floorplan
Version:
Interactive floor plan library for expos and events
13 lines • 708 B
TypeScript
import { type Config } from '@expofp/config';
/**
* Undocumented grey surface for the mobile SDKs (expofp/efp-app#1491): the
* allowlisted slice of the effective config, returned by
* `fp.getInternalSettings()` (`___fp.getInternalSettings()` from the native
* bridges). Deliberately absent from the public `FloorPlan` interface and the
* generated docs — not a public contract. Extend only by widening the Pick
* below; every field must have a named consumer in a mobile SDK repo (see the
* atlas).
*/
export type InternalSettings = Pick<Config, 'mobileLocationProvider'>;
export declare function toInternalSettings(config: Config): InternalSettings;
//# sourceMappingURL=internal-settings.d.ts.map