use namespaces instead of modules

This commit is contained in:
Peter Fajdiga
2023-08-21 22:01:07 +02:00
parent 463da59197
commit c4307e187f
3 changed files with 3 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
module Actions {
namespace Actions {
export function init(world: World, config: Config) {
return {
focusLeft: () => {

View File

@@ -146,7 +146,7 @@ class Desktop {
}
}
module Desktop {
namespace Desktop {
export type Config = {
marginTop: number,
marginBottom: number,

View File

@@ -1,4 +1,4 @@
module Clients {
namespace Clients {
export function canTileEver(kwinClient: AbstractClient) {
return kwinClient.resizeable;
}