aboutsummaryrefslogtreecommitdiffstats
path: root/src/std.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/std.rs')
-rw-r--r--src/std.rs6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/std.rs b/src/std.rs
index 969c51a..4bc0eb0 100644
--- a/src/std.rs
+++ b/src/std.rs
@@ -1 +1,5 @@
-pub type Child = crate::Child<std::process::Child, crate::pty::std::Pty>;
+type Pt = std::fs::File;
+
+pub type Command = crate::Command<std::process::Command, Pt>;
+pub type Child = crate::Child<std::process::Child, Pt>;
+pub type Pty = crate::Pty<Pt>;