UNPKG

bananass

Version:

Baekjoon Framework for JavaScript.🍌

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