libs5/src/index.ts

10 lines
223 B
TypeScript
Raw Normal View History

import { S5Node } from "#node.js";
import type { S5NodeConfig } from "#node.js";
2023-08-31 06:37:32 +00:00
export * from "./types.js";
export type { S5NodeConfig };
export function createNode(config: S5NodeConfig) {
return new S5Node(config);
}