mirror of
https://github.com/pybricks/pybricks-code.git
synced 2026-09-12 17:45:22 +00:00
13 lines
319 B
TypeScript
13 lines
319 B
TypeScript
// SPDX-License-Identifier: MIT
|
|
// Copyright (c) 2022 The Pybricks Authors
|
|
|
|
import { createAction } from '../actions';
|
|
|
|
export const sponsorShowDialog = createAction(() => ({
|
|
type: 'sponsor.action.showDialog',
|
|
}));
|
|
|
|
export const sponsorHideDialog = createAction(() => ({
|
|
type: 'sponsor.action.hideDialog',
|
|
}));
|