UNPKG

bananass

Version:

Baekjoon Framework for JavaScript.🍌

35 lines (26 loc) 1.08 kB
/** * @fileoverview `ConfigObjectOpen` type struct. */ // -------------------------------------------------------------------------------- // Import // -------------------------------------------------------------------------------- import { object } from 'superstruct'; // -------------------------------------------------------------------------------- // Typedefs // -------------------------------------------------------------------------------- /** * @import { ConfigObjectOpen } from '../../types.js'; * @import { Struct } from 'superstruct'; */ // -------------------------------------------------------------------------------- // Type Struct // -------------------------------------------------------------------------------- /** * `ConfigObjectOpen` type struct. * @type {Struct<ConfigObjectOpen>} */ const ConfigObjectOpen = object({}); // -------------------------------------------------------------------------------- // Export // -------------------------------------------------------------------------------- export default ConfigObjectOpen;