inbrain-surveys
Version:
In-App monetization via surveys, powered by inBrain.ai.
24 lines (23 loc) • 438 B
TypeScript
/**
* SDK OPTIONS
*/
export type NavigationBarConfig = {
title?: string;
backgroundColor?: string;
buttonsColor?: string;
titleColor?: string;
hasShadow?: boolean;
};
export type StatusBarConfig = {
lightStatusBar?: boolean;
/**
* Android only option. Have no effect at iOS.
*/
statusBarColor?: string;
};
/**
* Option: Data points
*/
export type DataPoints = {
[key: string]: string;
};