Skip to content

Commit c1fdf11

Browse files
committed
remove event name constants (to be added to .d.ts)
1 parent f3b451d commit c1fdf11

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export { Syncline, EVENT_STDOUT, EVENT_STDERR, EVENT_EXIT} from './syncline.js';
1+
export { Syncline} from './syncline.js';

lib/syncline.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -135,9 +135,9 @@ const MESSAGE_STDERR = 'stderr'; // when a line is received on the standard erro
135135

136136
const LF = Buffer.from( [ 0x0A]);
137137

138-
export const EVENT_STDOUT = 'stdout';
139-
export const EVENT_STDERR = 'stderr';
140-
export const EVENT_EXIT = 'exit';
138+
const EVENT_STDOUT = 'stdout';
139+
const EVENT_STDERR = 'stderr';
140+
const EVENT_EXIT = 'exit';
141141

142142
export class Syncline extends EventEmitter {
143143

0 commit comments

Comments
 (0)