move terminal.ts and keys.ts into the emulator folder

This commit is contained in:
2025-02-26 16:48:51 -05:00
parent e09891482e
commit 596a21f49d
3 changed files with 5 additions and 5 deletions

View File

@ -56,6 +56,6 @@
</style>
</noscript>
</footer>
<script type="module" src="./rt/terminal.ts"></script>
<script type="module" src="./rt/emulator/terminal.ts"></script>
</body>
</html>

View File

@ -1,5 +1,5 @@
import run from "./shell/command/command"
import history from "./shell/history"
import run from "../shell/command/command"
import history from "../shell/history"
type InputClosure = (key_event: KeyboardEvent) => void
interface EnterArgs {

View File

@ -1,5 +1,5 @@
import history from "./shell/history"
import prompt from "./elements/prompt"
import history from "../shell/history"
import prompt from "../elements/prompt"
import keys from "./keys"
const term_win_unsafe = document.querySelector("main")