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