Skip to content

Commit

Permalink
chore: fix type imports
Browse files Browse the repository at this point in the history
  • Loading branch information
lars-berger committed Nov 30, 2024
1 parent bc79f60 commit 74a1d35
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ import {
type FocusedResponse,
type WindowsResponse,
type MonitorsResponse,
type PausedResponse,
type WorkspacesResponse,
type RunCommandResponse,
type SubscribeResponse,
} from './types';
import { PausedResponse } from './types/responses/paused-response';

export interface WmClientOptions {
/**
Expand Down
1 change: 1 addition & 0 deletions src/types/events/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ export * from './focused-container-moved-event';
export * from './monitor-added-event';
export * from './monitor-removed-event';
export * from './monitor-updated-event';
export * from './pause-changed-event';
export * from './tiling-direction-changed-event';
export * from './user-config-changed-event';
export * from './window-managed-event';
Expand Down
2 changes: 1 addition & 1 deletion src/types/events/pause-changed-event.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ import { WmEventType } from '../wm-events';

export interface PauseChangedEvent {
eventType: WmEventType.PAUSE_CHANGED;
paused: boolean;
isPaused: boolean;
}
1 change: 1 addition & 0 deletions src/types/responses/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ export * from './app-metadata-response';
export * from './binding-modes-response';
export * from './focused-response';
export * from './monitors-response';
export * from './paused-response';
export * from './run-command-response';
export * from './subscribe-response';
export * from './tiling-direction-response';
Expand Down

0 comments on commit 74a1d35

Please sign in to comment.