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