accelerator-core
Version:
[](https://travis-ci.org/furkleindustries/accelerator-core)
21 lines (19 loc) • 562 B
text/typescript
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;
}