this repo has no description
0
fork

Configure Feed

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

Add LabelerServer#close

futurGH 2f516c6d eb7b1628

+9 -1
+9 -1
src/LabelerServer.ts
··· 120 120 * Stop the server. 121 121 * @param callback A callback to run when the server is stopped. 122 122 */ 123 - stop(callback: () => void = () => {}) { 123 + close(callback: () => void = () => {}) { 124 124 this.app.close(callback); 125 + } 126 + 127 + /** 128 + * Alias for {@link LabelerServer#close}. 129 + * @param callback A callback to run when the server is stopped. 130 + */ 131 + stop(callback: () => void = () => {}) { 132 + this.close(callback); 125 133 } 126 134 127 135 /**