v4web-components
Version:
Stencil Component Starter
21 lines (20 loc) • 462 B
TypeScript
export declare class LabDsHeader {
logoHeader: string;
eventLogo: () => void;
eventMyProfile: () => void;
eventLogout: () => void;
eventWallet?: () => void;
balanceWallet?: number;
user: {
name: string;
imageSRC?: string;
unitId?: string;
id?: string;
};
isToogleViewProfile: boolean;
handleClick: () => void;
handleToogleViewProfile: () => void;
el: HTMLElement;
checkForClickOutside(ev: any): void;
render(): any;
}