@visa/nova-angular
Version:
Visa Product Design System Nova Angular library
23 lines (22 loc) • 1.01 kB
TypeScript
import { DividerType } from './divider.constants';
import * as i0 from "@angular/core";
export declare class DividerDirective {
/**
* Sets divider style.
* @default 'default' / DividerType.DEFAULT
* @options 'default' | DividerType.DEFAULT | <br> 'section' | DividerType.SECTION | <br> 'decorative' | DividerType.DECORATIVE
*/
get dividerType(): DividerType;
set dividerType(value: DividerType);
_dividerType: DividerType;
/**
* Provides custom class(es) for custom styling.
* @default .v-divider.v-divider-<dividerType>
*/
class: string;
get hostClasses(): string;
get ariaHidden(): "true" | null;
constructor();
static ɵfac: i0.ɵɵFactoryDeclaration<DividerDirective, never>;
static ɵdir: i0.ɵɵDirectiveDeclaration<DividerDirective, "[v-divider]", never, { "dividerType": { "alias": "dividerType"; "required": false; }; "class": { "alias": "class"; "required": false; }; }, {}, never, never, true, never>;
}