File

projects/i-components/src/lib/enums/flex-alignment.ts

Description

FlexEnum

Index

Properties

Properties

Static center
Type : string
Default value : 'center'

Center

Static end
Type : string
Default value : 'flex-end'

end

Static normal
Type : string
Default value : 'normal'

Normal

Static start
Type : string
Default value : 'flex-start'

start

export class FlexEnum {
  /**
   * Center
   *
   * @static
   * @memberof FlexEnum
   */
  static center = 'center';

  /**
   * start
   *
   * @static
   * @memberof FlexEnum
   */
  static start = 'flex-start';

  /**
   * end
   *
   * @static
   * @memberof FlexEnum
   */
  static end = 'flex-end';

  /**
   * Normal
   *
   * @static
   * @memberof FlexEnum
   */
  static normal = 'normal';
}

result-matching ""

    No results matching ""