14 lines
253 B
TypeScript
14 lines
253 B
TypeScript
// Copyright 2019 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
export type NoopActionType = {
|
|
type: 'NOOP';
|
|
payload: null;
|
|
};
|
|
|
|
export function noopAction(): NoopActionType {
|
|
return {
|
|
type: 'NOOP',
|
|
payload: null,
|
|
};
|
|
}
|