UNPKG

qwc2

Version:
16 lines (15 loc) 371 B
/** * Copyright 2020-2024 Sourcepole AG * All rights reserved. * * This source code is licensed under the BSD-style license found in the * LICENSE file in the root directory of this source tree. */ export var LOG_ACTION = 'LOG_ACTION'; export function logAction(actionType, data) { return { type: LOG_ACTION, actionType: actionType, data: data }; }