mirror of
https://github.com/jsdoc/jsdoc.git
synced 2025-12-08 19:46:11 +00:00
17 lines
298 B
JavaScript
17 lines
298 B
JavaScript
'use strict';
|
|
|
|
/** @interface */
|
|
function IConnection() {}
|
|
|
|
/** Open the connection. */
|
|
IConnection.prototype.open = function() {};
|
|
|
|
/**
|
|
* @interface
|
|
* @extends {IConnection}
|
|
*/
|
|
function IClosableConnection() {}
|
|
|
|
/** Close the connection. */
|
|
IClosableConnection.prototype.close = function() {};
|