@bimeister/pupakit.kit
Version:
PupaKit is an open source collection of Angular components based on an atomic approach to building interfaces, which guarantees better performance and greater development flexibility.
10 lines (9 loc) • 439 B
TypeScript
import { HorizontalConnectionPos } from '@angular/cdk/overlay';
import { TemplateRef } from '@angular/core';
import { DropdownWidthType } from '../types/dropdown-width.type';
import { DropdownTemplateContext } from './dropdown-template-context.interface';
export interface DropdownDirectiveParams {
templateRef: TemplateRef<DropdownTemplateContext>;
widthType: DropdownWidthType;
horizontalPosition: HorizontalConnectionPos;
}