Skip to content

Commit

Permalink
expose startSmvRpc
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeOShannessy committed Aug 28, 2024
1 parent bdcc641 commit 784eb06
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@smoke-cloud/smv-rpc",
"version": "0.1.5",
"version": "0.1.6",
"exports": "./mod.ts",
"lint": {
"rules": {
Expand Down
3 changes: 2 additions & 1 deletion mod.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import type { JsonRpcClientUnix } from "./jsonrpcunix.ts";
import type { JsonRpcClientWin } from "./jsonrpcwin.ts";
import { type SmvRpc, startSmvRpc } from "./rpc.ts";
export { type SmvRpc, startSmvRpc } from "./rpc.ts";
import type { JsonRpcParams, JsonRpcResult } from "./jsonrpccommon.ts";
import { type SmvRpc, startSmvRpc } from "./rpc.ts";
export type JsonRpcClient = JsonRpcClientUnix | JsonRpcClientWin;

export interface Slice {
Expand Down

0 comments on commit 784eb06

Please sign in to comment.