diff --git a/src/files.ts b/src/files.ts index 8f99880..f68cc15 100644 --- a/src/files.ts +++ b/src/files.ts @@ -1,3 +1,4 @@ +// @ts-ignore import type { Ed25519Keypair, Err } from "libskynet"; import { OverwriteDataFn, ReadDataFn } from "./index.js"; diff --git a/src/plugin.ts b/src/plugin.ts index 8b1524e..01df88a 100644 --- a/src/plugin.ts +++ b/src/plugin.ts @@ -4,6 +4,7 @@ import { Logger } from "loglevel"; import { RPCMethod, RPCServer } from "./rpc.js"; import { IndependentFileSmall, SavedSslData, SslData } from "./files.js"; import type { express } from "express"; +// @ts-ignore import type { Err } from "libskynet"; export type PluginFunction = (api: PluginAPI) => Promise;