react-native-aps
Version:
Amazon Publisher Services SDK for React Native
16 lines (15 loc) • 295 B
TypeScript
/**
* @public
*/
export declare const AdType: {
readonly BANNER: "banner";
readonly INTERSTITIAL: "interstitial";
};
/**
* @public
*/
export declare type AdType = typeof AdType[keyof typeof AdType];
/**
* @internal
*/
export declare function isAdType(value: any): value is AdType;