swc/ecmascript/jsdoc/tests/fixtures/augmentall2.js
2020-08-14 18:20:25 +09:00

28 lines
412 B
JavaScript

/**
* Parent interface.
* @interface
*/
function Connection() {}
/**
* Open the connection.
*/
Connection.prototype.open = function() {};
/**
* Child interface.
* @interface
* @extends {Connection}
*/
function Socket() {}
/**
* Implementation of child interface.
* @class
* @implements {Socket}
*/
function EncryptedSocket() {}
/** @inheritdoc */
EncryptedSocket.prototype.open = function() {};