mirror of
https://github.com/pybricks/pybricks-code.git
synced 2026-09-15 02:54:07 +00:00
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.
8 lines
250 B
TypeScript
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 };
|