MCPcopy Create free account
hub / github.com/bea4dev/ShojiWM / resolveEffectConfig

Function resolveEffectConfig

tools/decoration-runtime.ts:3343–3367  ·  view source on GitHub ↗
(
  loaded: Record<string, unknown>,
)

Source from the content-addressed store, hash-verified

3341 action: "maximize",
3342 });
3343 },
3344 unmaximize() {
3345 entry.pendingActions.push({
3346 windowId: latestSnapshot.id,
3347 action: "unmaximize",
3348 });
3349 },
3350 minimize() {
3351 entry.pendingActions.push({
3352 windowId: latestSnapshot.id,
3353 action: "minimize",
3354 });
3355 },
3356 fullscreen() {
3357 entry.pendingActions.push({
3358 windowId: latestSnapshot.id,
3359 action: "fullscreen",
3360 });
3361 },
3362 unfullscreen() {
3363 entry.pendingActions.push({
3364 windowId: latestSnapshot.id,
3365 action: "unfullscreen",
3366 });
3367 },
3368 focus() {
3369 entry.pendingActions.push({
3370 windowId: latestSnapshot.id,

Callers 1

loadRuntimeConfigFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected