refactor: remove unused runtime facade exports (#21731)

This commit is contained in:
Kit Langton 2026-04-09 14:52:06 -04:00 committed by GitHub
commit 9f54115c5d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 0 additions and 85 deletions

View file

@ -371,10 +371,6 @@ export namespace Pty {
return runPromise((svc) => svc.get(id))
}
export async function resize(id: PtyID, cols: number, rows: number) {
return runPromise((svc) => svc.resize(id, cols, rows))
}
export async function write(id: PtyID, data: string) {
return runPromise((svc) => svc.write(id, data))
}