swc/crates/jsdoc/tests/fixtures/augmentall2.js
2021-11-10 16:39:01 +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() {};