1
1
mirror of https://github.com/wez/wezterm.git synced 2024-09-19 18:57:59 +03:00

Re-export portable_pty::{PtySize, MasterPty, ChildKiller} as it is available in public API (#1603)

* Re-export portable_pty::PtySize as it is available in public API

* Re-export portable_pty::{MasterPty, ChildKiller} as those are both implemented by public structs from wezterm-ssh
This commit is contained in:
Chip Senkbeil 2022-01-30 19:27:29 -06:00 committed by GitHub
parent c80ee319e2
commit caf504ee81
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -26,4 +26,4 @@ pub use sftp::*;
// NOTE: Re-exported as is exposed in a public API of this crate
pub use camino::{Utf8Path, Utf8PathBuf};
pub use filedescriptor::FileDescriptor;
pub use portable_pty::Child;
pub use portable_pty::{Child, ChildKiller, MasterPty, PtySize};