Refactor order of item to follow alphabetical order.
This commit is contained in:
@@ -292,32 +292,32 @@
|
||||
|
||||
<div class="tab-pane fade tab-source-code" id="c-source">
|
||||
<pre class="line-numbers compodoc-sourcecode"><code class="language-typescript">interface Action {
|
||||
/** Action ID */
|
||||
id: number;
|
||||
/** Admin who initialized the action. */
|
||||
user: string;
|
||||
/** Admin's role in the system */
|
||||
role: string;
|
||||
/** Action performed */
|
||||
action: string;
|
||||
/** Action approval status. */
|
||||
approval: boolean;
|
||||
/** Action ID */
|
||||
id: number;
|
||||
/** Admin's role in the system */
|
||||
role: string;
|
||||
/** Admin who initialized the action. */
|
||||
user: string;
|
||||
}
|
||||
|
||||
/** Area name object interface */
|
||||
interface AreaName {
|
||||
/** Name of area */
|
||||
name: string;
|
||||
/** Locations that map to that area name. */
|
||||
locations: Array<string>;
|
||||
/** Name of area */
|
||||
name: string;
|
||||
}
|
||||
|
||||
/** Area type object interface */
|
||||
interface AreaType {
|
||||
/** Type of area */
|
||||
name: string;
|
||||
/** Areas that map to that area type. */
|
||||
area: Array<string>;
|
||||
/** Type of area */
|
||||
name: string;
|
||||
}
|
||||
|
||||
/** Category object interface */
|
||||
|
||||
Reference in New Issue
Block a user