Skip to content
This repository was archived by the owner on Nov 21, 2022. It is now read-only.

Commit 5e0cc38

Browse files
committed
Export types for file watcher
1 parent 5f9a0c0 commit 5e0cc38

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@devbookhq/sdk",
3-
"version": "2.5.7",
3+
"version": "2.5.8",
44
"description": "SDK for managing Devbook sessions from JavaScript/TypeScript",
55
"homepage": "https://usedevbook.com",
66
"license": "SEE LICENSE IN LICENSE",

src/index.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,15 @@ export type { OutResponse, OutStderrResponse, OutStdoutResponse } from './sessio
1414
export { OutType } from './session/out'
1515
export type { TerminalManager, TerminalSession, ChildProcess } from './session/terminal'
1616
export type { FilesystemManager, FileInfo } from './session/filesystem'
17+
export {
18+
default as FilesystemWatcher,
19+
FilesystemOperation,
20+
} from './session/filesystemWatcher'
21+
export type {
22+
FilesystemEvent,
23+
FilesystemEventListener,
24+
} from './session/filesystemWatcher'
25+
1726
export type { Process, ProcessManager } from './session/process'
1827
export type { EnvVars } from './session/envVars'
1928
export { default as api } from './api'

0 commit comments

Comments
 (0)