aboutsummaryrefslogtreecommitdiffstats
path: root/src/async_std.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/async_std.rs')
-rw-r--r--src/async_std.rs7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/async_std.rs b/src/async_std.rs
index 2a66647..8d0e877 100644
--- a/src/async_std.rs
+++ b/src/async_std.rs
@@ -1,2 +1,5 @@
-pub type Child =
- crate::Child<async_process::Child, crate::pty::async_io::Pty>;
+type Pt = async_io::Async<std::fs::File>;
+
+pub type Command = crate::Command<async_process::Command, Pt>;
+pub type Child = crate::Child<async_process::Child, Pt>;
+pub type Pty = crate::Pty<Pt>;