mirror of
https://github.com/documentationjs/documentation.git
synced 2026-01-18 14:17:30 +00:00
11 lines
179 B
JavaScript
11 lines
179 B
JavaScript
/**
|
|
* With ES6, built-in types are extensible!
|
|
*/
|
|
class SpecialArray extends Array {
|
|
additionalMethod() {
|
|
}
|
|
}
|
|
|
|
/** @class Foo */
|
|
module.exports = class Foo extends Bar { };
|