mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-05-08 03:01:47 +00:00
10 lines
239 B
TypeScript
10 lines
239 B
TypeScript
import { TerminalEvent } from './terminal-event.js'
|
|
|
|
export class PasteEvent extends TerminalEvent {
|
|
readonly text: string
|
|
|
|
constructor(text: string) {
|
|
super('paste', { bubbles: true, cancelable: true })
|
|
this.text = text
|
|
}
|
|
}
|