UNPKG

react-kiwi-dropdown

Version:

| Name | Type | Description | | --------------------------- | -------------------- | ----------- | | options | array | | selectedOption | string | | onCha

17 lines (12 loc) 290 B
'use strict'; const Container = require('./container'); const Node = require('./node'); class Parenthesis extends Node { constructor (opts) { super(opts); this.type = 'paren'; this.parenType = ''; } } Container.registerWalker(Parenthesis); module.exports = Parenthesis;