LmnSizeWatcher
A size watcher @property id - The id of the watcher @property subject - The subject that emits the size changes @property currentWidthZone - The current width zone of the watcher @property isWindow - Whether the watcher is a window watcher @property element - The element of the watcher
Presentation
type LmnSizeWatcher = (LmnWindowSizeWatcher | LmnElementSizeWatcher) & {
id: string;
subject: BehaviorSubject <LmnSizeChange >;
currentWidthZone: () => LmnWidthZone ;
};