File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed
packages/node-core/src/sdk Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -77,8 +77,7 @@ export class NodeClient extends ServerRuntimeClient<NodeClientOptions> {
7777 return tracer ;
7878 }
7979
80- // Eslint ignore explanation: This is already documented in super.
81- // eslint-disable-next-line jsdoc/require-jsdoc
80+ /** @inheritDoc */
8281 public async flush ( timeout ?: number ) : Promise < boolean > {
8382 await this . traceProvider ?. forceFlush ( ) ;
8483
@@ -89,9 +88,8 @@ export class NodeClient extends ServerRuntimeClient<NodeClientOptions> {
8988 return super . flush ( timeout ) ;
9089 }
9190
92- // Eslint ignore explanation: This is already documented in super.
93- // eslint-disable-next-line jsdoc/require-jsdoc
94- public close ( timeout ?: number | undefined ) : PromiseLike < boolean > {
91+ /** @inheritDoc */
92+ public async close ( timeout ?: number | undefined ) : Promise < boolean > {
9593 if ( this . _clientReportInterval ) {
9694 clearInterval ( this . _clientReportInterval ) ;
9795 }
You can’t perform that action at this time.
0 commit comments