this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Pass error and address to LabelerServer#start callback

futur c1bdc57c 074e63ab

+1 -1
+1 -1
src/LabelerServer.ts
··· 113 113 * @param port The port to listen on. 114 114 * @param callback A callback to run when the server is started. 115 115 */ 116 - start(port: number, callback: () => void = () => {}) { 116 + start(port: number, callback: (error: Error | null, address: string) => void = () => {}) { 117 117 this.app.listen({ port }, callback); 118 118 } 119 119