@logo-elements/component-base
Version:
A set of mixins used by Logo Elements which is extended from Vaadin components.
15 lines (13 loc) • 317 B
TypeScript
interface LogoElements {
developmentModeCallback?: {
'usage-statistics'?: () => void;
'vaadin-license-checker'?: () => void;
};
registrations?: Array<{ is: string; version: string }>;
usageStatsChecker?: {
maybeGatherAndSend: () => void;
};
}
interface Window {
LogoElements: LogoElements;
}