@mixin

Syntax

@mixin [<name>]

Overview

This tag declares a "mixin" − a partial class that can be mixed in to another class.

Example(s)

/**
 * @mixin
 */
const MixinA = {
  /**
   * @method
   */
  doIt() {
    
  }
}
/**
 * @mixin
 */
class MixinB {
  
}
Powered by webdoc!