parent
c2edde8183
commit
f885199b2b
@ -1,6 +1,6 @@ |
||||
import styles from './styles.module.css' |
||||
import {useContext, useEffect, useState} from "react"; |
||||
import Context, {ContextInterface} from "../command/context"; |
||||
import Context, {ContextInterface} from "../../context"; |
||||
|
||||
export interface ArgumentInterface { |
||||
name: string, |
@ -1,7 +1,7 @@ |
||||
import styles from './styles.module.css' |
||||
import {useContext, useEffect, useState} from "react"; |
||||
import Argument, {ArgumentInterface} from "../argument"; |
||||
import Context, {ContextInterface} from "../command/context"; |
||||
import Context, {ContextInterface} from "../../context"; |
||||
|
||||
interface ArgumentsInterface { |
||||
argumentList: ArgumentInterface[] |
@ -1,6 +1,6 @@ |
||||
import styles from './styles.module.css' |
||||
import {useContext} from "react"; |
||||
import Context, {ContextInterface} from "../command/context"; |
||||
import Context, {ContextInterface} from "../../context"; |
||||
|
||||
export interface OptionInterface { |
||||
name: string, |
@ -1,7 +1,7 @@ |
||||
import styles from './styles.module.css' |
||||
import Option, {OptionInterface} from '../option' |
||||
import {useContext, useEffect, useState} from "react"; |
||||
import Context, {ContextInterface} from "../command/context"; |
||||
import Context, {ContextInterface} from "../../context"; |
||||
|
||||
interface OptionsInterface { |
||||
optionList: OptionInterface[] |
Loading…
Reference in new issue