@neeyamoui/my-component-lib
Version:
A reusable Angular component library with common UI elements like buttons.
18 lines (14 loc) • 762 B
TypeScript
import * as i0 from '@angular/core';
import { EventEmitter } from '@angular/core';
declare class MyComponentLib {
static ɵfac: i0.ɵɵFactoryDeclaration<MyComponentLib, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<MyComponentLib, "lib-my-component-lib", never, {}, {}, never, never, true, never>;
}
declare class MyButton {
backgroundColor: string;
onClick: EventEmitter<void>;
constructor();
static ɵfac: i0.ɵɵFactoryDeclaration<MyButton, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<MyButton, "lib-my-button", never, { "backgroundColor": { "alias": "backgroundColor"; "required": false; }; }, { "onClick": "onClick"; }, never, [".main-content", ".sub-content"], true, never>;
}
export { MyButton, MyComponentLib };