Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/modules/ui/install/js/ui/auto-launch/src/
Upload File :
Current File : /var/www/homesaver/www/bitrix/modules/ui/install/js/ui/auto-launch/src/launch-item-options.js

import { LaunchPriority } from './launch-priority';

export type LaunchItemCallback = (done: Function) => {};

export type LaunchItemOptions = {
	callback: LaunchItemCallback,
	id?: string,
	priority?: LaunchPriority,
	delay?: number,
	allowLaunchAfterOthers?: boolean,
	forceShowOnTop?: boolean | Function,
	context?: LaunchItemContext,
};

export type LaunchItemContext = {
	slider: Object,
	sliderId: string,
};