UNPKG

box-ui-elements-mlh

Version:
15 lines (12 loc) 277 B
// @flow import type { TargetingApi } from './types'; /** * Return a targetingApi that is always targeting */ const alwaysTargeted: TargetingApi = { canShow: true, onShow: () => {}, onClose: () => {}, onComplete: () => {}, }; export default alwaysTargeted;