File

projects/UILibrary/src/app/models/login.interface.ts

Index

Properties

Properties

invalidMessage
invalidMessage: string
Type : string
isInvalid
isInvalid: boolean
Type : boolean
Optional
isRequired
isRequired: boolean
Type : boolean
Optional
name
name: string
Type : string
placeholder
placeholder: string
Type : string
Optional
type
type: string
Type : string
value
value: string
Type : string
Optional
export interface ILoginData {
  header: string,
  fields: ILoginField[]
}

export interface ILoginField {
  name: string,
  type: string,
  value?: string,
  placeholder?: string
  isRequired?: boolean
  invalidMessage: string;
  isInvalid?: boolean;
}

results matching ""

    No results matching ""