File size: 388 Bytes
96e86e5 | 1 2 3 4 5 6 7 8 9 10 11 12 | import type { WorkspaceRuntimeControlTarget } from "@penclipai/shared";
export function sanitizeWorkspaceRuntimeControlTarget(
target: WorkspaceRuntimeControlTarget = {},
): WorkspaceRuntimeControlTarget {
return {
workspaceCommandId: target.workspaceCommandId ?? null,
runtimeServiceId: target.runtimeServiceId ?? null,
serviceIndex: target.serviceIndex ?? null,
};
}
|