mirror of
https://github.com/m1k1o/neko.git
synced 2024-07-24 14:40:50 +12:00
add cursor changing (WIP).
This commit is contained in:
@ -35,6 +35,7 @@ export interface Video {
|
||||
/////////////////////////////
|
||||
export interface Control {
|
||||
scroll: Scroll
|
||||
cursor: Cursor | null
|
||||
clipboard: Clipboard | null
|
||||
host_id: string | null
|
||||
implicit_hosting: boolean
|
||||
@ -45,6 +46,12 @@ export interface Scroll {
|
||||
sensitivity: number
|
||||
}
|
||||
|
||||
export interface Cursor {
|
||||
uri: string
|
||||
hot_x: number
|
||||
hot_y: number
|
||||
}
|
||||
|
||||
export interface Clipboard {
|
||||
text: string
|
||||
}
|
||||
|
Reference in New Issue
Block a user