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
parent 2ecc6ae65f
commit 9f54115c5d
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))
}