UNPKG

bananass

Version:

Baekjoon Framework for JavaScript.🍌

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