Online store
Online values
| Property | default | Description |
|---|---|---|
| online | true | Online state |
Online events
| Event name | Argument | Description |
|---|---|---|
| onChange | boolean | Called when the online state changes |
| onMount | Element | Called when the component is mounted |
| onClean | null | Called when the component is removed |
Online state
export interface OnlineState {
snapshot: [OnlineState]
online: boolean
callback(): void
onChange(): void
onMount(): void
onClean(): void
}