igniteui-angular
Version:
Ignite UI for Angular is a dependency-free Angular toolkit for building modern web apps
17 lines (16 loc) • 435 B
TypeScript
import { InjectionToken } from '@angular/core';
declare const IgxInputGroupEnum: {
Line: "line";
Box: "box";
Border: "border";
Search: "search";
};
/**
* Defines the InputGroupType DI token.
*/
export declare const IGX_INPUT_GROUP_TYPE: InjectionToken<IgxInputGroupType>;
/**
* Determines the InputGroupType.
*/
export type IgxInputGroupType = (typeof IgxInputGroupEnum)[keyof typeof IgxInputGroupEnum];
export {};