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