File tree Expand file tree Collapse file tree 4 files changed +4
-2
lines changed
Expand file tree Collapse file tree 4 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -19,11 +19,11 @@ import {
1919 type FocusedResponse ,
2020 type WindowsResponse ,
2121 type MonitorsResponse ,
22+ type PausedResponse ,
2223 type WorkspacesResponse ,
2324 type RunCommandResponse ,
2425 type SubscribeResponse ,
2526} from './types' ;
26- import { PausedResponse } from './types/responses/paused-response' ;
2727
2828export interface WmClientOptions {
2929 /**
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ export * from './focused-container-moved-event';
55export * from './monitor-added-event' ;
66export * from './monitor-removed-event' ;
77export * from './monitor-updated-event' ;
8+ export * from './pause-changed-event' ;
89export * from './tiling-direction-changed-event' ;
910export * from './user-config-changed-event' ;
1011export * from './window-managed-event' ;
Original file line number Diff line number Diff line change @@ -2,5 +2,5 @@ import { WmEventType } from '../wm-events';
22
33export interface PauseChangedEvent {
44 eventType : WmEventType . PAUSE_CHANGED ;
5- paused : boolean ;
5+ isPaused : boolean ;
66}
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ export * from './app-metadata-response';
22export * from './binding-modes-response' ;
33export * from './focused-response' ;
44export * from './monitors-response' ;
5+ export * from './paused-response' ;
56export * from './run-command-response' ;
67export * from './subscribe-response' ;
78export * from './tiling-direction-response' ;
You can’t perform that action at this time.
0 commit comments