adam-gui/vendor/fyne.io/fyne/v2/clipboard.go

10 lines
228 B
Go
Raw Permalink Normal View History

2024-04-29 19:13:50 +02:00
package fyne
// Clipboard represents the system clipboard interface
type Clipboard interface {
// Content returns the clipboard content
Content() string
// SetContent sets the clipboard content
SetContent(content string)
}