Files
pybricks-code/src/alerts/alerts.ts
T
David Lechner e7366c8afd rework alerts
This starts moving alerts to the same subsystem where they are relevant
instead of putting everything in notifications.

So far, only the explorer file in use error is handled like this.
2022-05-20 19:25:18 -05:00

8 lines
250 B
TypeScript

// SPDX-License-Identifier: MIT
// Copyright (c) 2022 The Pybricks Authors
import { unexpectedError } from './UnexpectedErrorAlert';
// gathers all of the alert creation functions for passing up to the top level
export default { unexpectedError };