Skip to content
This repository has been archived by the owner on May 13, 2024. It is now read-only.

Commit

Permalink
fix a mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
KermanX committed Jan 26, 2022
1 parent dc7a448 commit c37c990
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nodeliketty",
"version": "1.0.0",
"version": "1.0.1",
"description": "A definition of tty that works like Nodejs WriteStream.",
"main": "build/index.js",
"types": "build/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Direction } from "node:tty";
export { Direction };
export interface NodeLikeTty {
export default interface NodeLikeTty {
write(buffer: Uint8Array | string): boolean;
on(event: "resize", listener: () => void): this;
/**
Expand Down

0 comments on commit c37c990

Please sign in to comment.