mirror of
https://github.com/jsdoc/jsdoc.git
synced 2025-12-08 19:46:11 +00:00
13 lines
283 B
JavaScript
13 lines
283 B
JavaScript
/** @interface */
|
|
function ITester() {}
|
|
ITester.prototype.beforeEach = function() {};
|
|
ITester.prototype.it = function() {};
|
|
|
|
/**
|
|
* @constructor
|
|
* @implements {ITester}
|
|
*/
|
|
function MyTester() {}
|
|
MyTester.prototype.beforeEach = function() {};
|
|
MyTester.prototype.it = function() {};
|