UNPKG

accelerator-core

Version:

[![Build Status](https://travis-ci.org/furkleindustries/accelerator-core.svg?branch=master)](https://travis-ci.org/furkleindustries/accelerator-core)

21 lines (19 loc) 562 B
import { ILoadingScreenOwnProps, } from '../components/LoadingScreen/ILoadingScreenOwnProps'; import { MaybeReadonlyArray, } from '../typeAliases/MaybeReadonlyArray'; import { ComponentType, } from 'react'; export interface IBeginLoadOptions { readonly bodyText?: string; readonly component?: ComponentType<ILoadingScreenOwnProps>; readonly descriptions?: MaybeReadonlyArray<string>; readonly logoPath?: string; readonly progressMax?: number; readonly progressStart?: number; readonly title?: string; readonly doneCallback?: () => void; }