@circe/core
Version:
Circe Components for Angular :: Core Services and Tools
17 lines (16 loc) • 744 B
TypeScript
import { NpaDefaultIconOldKeysDefinition, NpaDefaultIconsOldKeys, NpaIconOld, NpaIconOldDefinition, NpaIconOldSet, NpaIconOldSetDefinition } from './icons-old.types';
export declare class IconsOld {
classBase: string;
readonly defaultKeys: NpaDefaultIconOldKeysDefinition;
readonly npaIconSetFields: NpaIconOldSetDefinition;
readonly npaIconFields: NpaIconOldDefinition;
private readonly _defaults;
constructor(classBase?: string);
private _applyClassBase;
private _getIconFromSet;
get(defaultKey: NpaDefaultIconsOldKeys): string;
getCustom(icon: string): string;
getIcon(icon: NpaIconOld): string;
getIconLeft(iconSet: NpaIconOldSet): string;
getIconRight(iconSet: NpaIconOldSet): string;
}