fix: update imports to be local

This commit is contained in:
Derrick Hammer 2023-09-08 08:49:41 -04:00
parent 469f02b69f
commit 631fde4868
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
7 changed files with 10 additions and 9 deletions

View File

@ -5,7 +5,7 @@ import {
loginPromise, loginPromise,
logoutPromise, logoutPromise,
} from "./queries.js"; } from "./queries.js";
import { Err } from "../types.js"; import { Err } from "#types.js";
// There are 5 stages of auth. // There are 5 stages of auth.
// //

View File

@ -1,6 +1,6 @@
import { log, logErr } from "./log.js"; import { log, logErr } from "./log.js";
import { DataFn, Err, ErrTuple } from "../types.js"; import { DataFn, Err, ErrTuple } from "#types.js";
import { bufToB64, encodeU64 } from "../util.js"; import { bufToB64, encodeU64 } from "#util.js";
// queryResolve is the 'resolve' value of a promise that returns an ErrTuple. // queryResolve is the 'resolve' value of a promise that returns an ErrTuple.
// It gets called when a query sends a 'response' message. // It gets called when a query sends a 'response' message.

View File

@ -1,5 +1,5 @@
import { newKernelQuery } from "../queries.js"; import { newKernelQuery } from "../queries.js";
import { Err } from "@lumeweb/libweb"; import { Err } from "#types.js";
// kernelVersion will fetch the version number of the kernel. If successful, // kernelVersion will fetch the version number of the kernel. If successful,
// the returned value will be an object containing a field 'version' with a // the returned value will be an object containing a field 'version' with a

View File

@ -1,6 +1,6 @@
import Emittery from "emittery"; import Emittery from "emittery";
import { callModule, connectModule, log, logErr } from "../api.js"; import { callModule, connectModule, log, logErr } from "../api.js";
import { DataFn, ErrTuple } from "@lumeweb/libweb"; import { DataFn, ErrTuple } from "#types.js";
export type callModuleBound = (method: string, data?: any) => Promise<ErrTuple>; export type callModuleBound = (method: string, data?: any) => Promise<ErrTuple>;
export type connectModuleBound = ( export type connectModuleBound = (

View File

@ -1,4 +1,4 @@
import { objAsString } from "@lumeweb/libweb"; import { objAsString } from "#util.js";
// logHelper is a helper function that runs the code for both log and logErr. // logHelper is a helper function that runs the code for both log and logErr.
// It takes a boolean indiciating whether the log should be an error, and then // It takes a boolean indiciating whether the log should be an error, and then

View File

@ -9,7 +9,8 @@ import {
handleResponseUpdate, handleResponseUpdate,
} from "./queries.js"; } from "./queries.js";
import { handlePresentKey } from "./key.js"; import { handlePresentKey } from "./key.js";
import { DataFn, ErrFn, addContextToErr, objAsString } from "@lumeweb/libweb"; import type { DataFn, ErrFn } from "#types.js";
import { addContextToErr, objAsString } from "#util.js";
// handlerFn takes an ActiveQuery as input and has no return value. The return // handlerFn takes an ActiveQuery as input and has no return value. The return
// is expected to come in the form of calling aq.accept or aq.reject. // is expected to come in the form of calling aq.accept or aq.reject.

View File

@ -1,6 +1,6 @@
import { log, logErr } from "./log.js"; import { log, logErr } from "./log.js";
import { DataFn } from "./messages.js"; import type { DataFn, ErrTuple } from "#types.js";
import { ErrTuple, objAsString } from "@lumeweb/libweb"; import { objAsString } from "#util.js";
// queryResolve defines the function that gets called to resolve a query. It's // queryResolve defines the function that gets called to resolve a query. It's
// the 'resolve' field of a promise that returns a tuple containing some data // the 'resolve' field of a promise that returns a tuple containing some data