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