korean-dictionary
Version:
Provides Korean Dictionary Implements and Crawler for Node.js with Rust FFI
82 lines (62 loc) • 1.76 kB
HTML
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Source: DictionaryItem.js</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Source: DictionaryItem.js</h1>
<section>
<article>
<pre class="prettyprint source linenums"><code>/**
* Class representing a dictionary item.
*/
class DictionaryItem {
constructor({
word, meaning, pos, category,
}) {
/**
* 표제어
* @member {string}
*/
this.word = word;
/**
* 뜻
* @member {string}
*/
this.meaning = meaning;
/**
* 품사
* @member {Array.<string>}
*/
this.pos = pos;
/** 전문어 및 특수어휘
* @member {Array.<string>}
*/
this.category = category;
}
}
module.exports = DictionaryItem;
</code></pre>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="Dictionary.html">Dictionary</a></li><li><a href="DictionaryItem.html">DictionaryItem</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Wed Nov 21 2018 20:39:12 GMT+0900 (Korean Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html>