tuil
ReferenceComponentsWorkflow UI

SplashScreenProps

SplashScreenProps component contract.

View rawEdit

Type

export interface SplashScreenProps {
  readonly id?: string;
  readonly logo?: string | readonly string[];
  readonly title: string;
  readonly message?: string;
  readonly progress?: number;
  readonly status?: string;
}

Members

MemberTypeRequiredDescriptionRelated types
idstring | undefinedNoThe id member uses the string | undefined contract.
logostring | readonly string[] | undefinedNoThe logo member uses the string | readonly string[] | undefined contract.
titlestringYesThe title member uses the string contract.
messagestring | undefinedNoThe message member uses the string | undefined contract.
progressnumber | undefinedNoThe progress member uses the number | undefined contract.
statusstring | undefinedNoThe status member uses the string | undefined contract.

Source

View the secondary source reference

On this page