UNPKG

bananass

Version:

Baekjoon Framework for JavaScript.🍌

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