File size: 291 Bytes
20dbb3c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/**
 * Copyright (c) 2020, Microsoft Corporation (MIT License).
 */

export interface IWorkerData {
  conoutPipeName: string;
}

export const enum ConoutWorkerMessage {
  READY = 1
}

export function getWorkerPipeName(conoutPipeName: string): string {
  return `${conoutPipeName}-worker`;
}