Add documentation to models.

This commit is contained in:
Spencer Ofwiti
2021-05-12 09:40:21 +03:00
parent 508c1b5c94
commit ca985d7af7
62 changed files with 3096 additions and 737 deletions

View File

@@ -64,6 +64,13 @@
<code>src/app/_models/mappings.ts</code>
</p>
<p class="comment">
<h3>Description</h3>
</p>
<p class="comment">
<p>Category object interface </p>
</p>
<section>
@@ -166,22 +173,26 @@
approval: boolean;
}
interface Category {
name: string;
products: Array&lt;string&gt;;
}
/** Area name object interface */
interface AreaName {
name: string;
locations: Array&lt;string&gt;;
}
/** Area type object interface */
interface AreaType {
name: string;
area: Array&lt;string&gt;;
}
export { Action, Category, AreaName, AreaType };
/** Category object interface */
interface Category {
name: string;
products: Array&lt;string&gt;;
}
/** @exports */
export { Action, AreaName, AreaType, Category };
</code></pre>
</div>
</div>