UNPKG

bananass

Version:

Baekjoon Framework for JavaScript.🍌

36 lines (27 loc) 1.13 kB
/** * @fileoverview `ConfigObjectAdd` type struct. */ // -------------------------------------------------------------------------------- // Import // -------------------------------------------------------------------------------- import { object } from 'superstruct'; // -------------------------------------------------------------------------------- // Typedefs // -------------------------------------------------------------------------------- /** * @typedef {import('../../types.js').ConfigObjectAdd} ConfigObjectAdd * @typedef {import('superstruct').Struct<ConfigObjectAdd>} ConfigObjectAddStruct */ // -------------------------------------------------------------------------------- // Type Struct // -------------------------------------------------------------------------------- /** * `ConfigObjectAdd` type struct. * * @type {ConfigObjectAddStruct} */ const ConfigObjectAdd = object({}); // -------------------------------------------------------------------------------- // Export // -------------------------------------------------------------------------------- export default ConfigObjectAdd;