From 20a4b71292cdc54c3827b5dd5070f6fb480de230 Mon Sep 17 00:00:00 2001 From: Shane Froebel Date: Sat, 18 Nov 2023 11:24:34 -0500 Subject: [PATCH] feat: added parser within the client package #4 [ci skip] --- src/index.ts | 3 ++- src/parser.ts | 5 +++++ 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 src/parser.ts diff --git a/src/index.ts b/src/index.ts index 58450e9..15d2b6b 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,6 +1,7 @@ import {Client} from "./client.js"; +import {Parser} from "./parser.js"; export default Client -export { Client } +export { Client, Parser } export type {ConnectionOptions} from './normalize.js' \ No newline at end of file diff --git a/src/parser.ts b/src/parser.ts new file mode 100644 index 0000000..110f17e --- /dev/null +++ b/src/parser.ts @@ -0,0 +1,5 @@ +import EventEmitter from "events"; + +export class Parser extends EventEmitter { + +} \ No newline at end of file