UNPKG

accelerator-core

Version:

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

16 lines (14 loc) 419 B
import { IClassNameable, } from '../../interfaces/IClassNameable'; import { MaybeReadonlyArray, } from '../../typeAliases/MaybeReadonlyArray'; export interface ILoadingScreenOwnProps extends IClassNameable { readonly bodyText: string; readonly progressMax: number; readonly progressStart: number; readonly logoPath: string; readonly title: string; readonly descriptions?: MaybeReadonlyArray<string>; }