UNPKG

react-kiwi-dropdown

Version:

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

27 lines (22 loc) 459 B
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Tobias Koppers @sokra */ "use strict"; const NullDependency = require("./NullDependency"); class JsonExportsDependency extends NullDependency { constructor(exports) { super(); this.exports = exports; } get type() { return "json exports"; } getExports() { return { exports: this.exports, dependencies: undefined }; } } module.exports = JsonExportsDependency;