Skip to main content

Clipboard store

Clipboard values

PropertydefaultDescription
clipboard""Clipboard value

Clipboard events

Event nameArgumentDescription
changestringCalled when the clipboard is changed
mountElementCalled when the component is mounted
cleannullCalled when the component is removed

Clipboard state

export interface ClipboardState {
snapshot: [ClipboardState]
clipboard: string
callback(): void
change(): void
mount(): void
clean(): void
}