ClientState: split into files

This commit is contained in:
Peter Fajdiga
2023-09-02 10:24:07 +02:00
parent 1bcf768588
commit 9912a8d917
3 changed files with 10 additions and 8 deletions

View File

@@ -0,0 +1,5 @@
namespace ClientState {
export class Floating implements State {
public destroy(passFocus: boolean) {}
}
}

View File

@@ -23,12 +23,4 @@ namespace ClientState {
export type State = {
destroy(passFocus: boolean): void;
};
export class TiledMinimized implements State {
public destroy(passFocus: boolean) {}
}
export class Floating implements State {
public destroy(passFocus: boolean) {}
}
}

View File

@@ -0,0 +1,5 @@
namespace ClientState {
export class TiledMinimized implements State {
public destroy(passFocus: boolean) {}
}
}