File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ type SpawnFallback = {
99 options : SpawnOptions ;
1010} ;
1111
12- export type SpawnWithFallbackResult = {
12+ type SpawnWithFallbackResult = {
1313 child : ChildProcess ;
1414 usedFallback : boolean ;
1515 fallbackLabel ?: string ;
Original file line number Diff line number Diff line change @@ -21,6 +21,5 @@ export type {
2121 RunRecord ,
2222 RunState ,
2323 SpawnInput ,
24- SpawnMode ,
2524 TerminationReason ,
2625} from "./types.js" ;
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ function resolveMaxExitedRecords(value?: number): number {
1515 return Math . max ( 1 , Math . floor ( value ) ) ;
1616}
1717
18- export type RunRegistry = {
18+ type RunRegistry = {
1919 add : ( record : RunRecord ) => void ;
2020 get : ( runId : string ) => RunRecord | undefined ;
2121 updateState : (
Original file line number Diff line number Diff line change @@ -46,8 +46,6 @@ export type ManagedRun = {
4646 cancel : ( reason ?: TerminationReason ) => void ;
4747} ;
4848
49- export type SpawnMode = "child" | "pty" ;
50-
5149export type ManagedRunStdin = {
5250 write : ( data : string , cb ?: ( err ?: Error | null ) => void ) => void ;
5351 end : ( ) => void ;
You can’t perform that action at this time.
0 commit comments