bananass
Version:
Baekjoon Framework for JavaScript.🍌
35 lines (26 loc) • 1.07 kB
JavaScript
/**
* @fileoverview `ConfigObjectAdd` type struct.
*/
// --------------------------------------------------------------------------------
// Import
// --------------------------------------------------------------------------------
import { object } from 'superstruct';
// --------------------------------------------------------------------------------
// Typedefs
// --------------------------------------------------------------------------------
/**
* @import { ConfigObjectAdd } from '../../types.js';
* @import { Struct } from 'superstruct';
*/
// --------------------------------------------------------------------------------
// Type Struct
// --------------------------------------------------------------------------------
/**
* `ConfigObjectAdd` type struct.
* @type {Struct<ConfigObjectAdd>}
*/
const ConfigObjectAdd = object({});
// --------------------------------------------------------------------------------
// Export
// --------------------------------------------------------------------------------
export default ConfigObjectAdd;