mirror of
https://github.com/pybricks/pybricks-code.git
synced 2026-09-12 01:23:52 +00:00
The notification reducer should decide when to display notifications rather than having notifications scattered throughout the code. Also start using translations so that user-visible strings are not scattered in code.
12 lines
191 B
TypeScript
12 lines
191 B
TypeScript
/// <reference types="react-scripts" />
|
|
|
|
declare module '*.json' {
|
|
const src: object;
|
|
export default src;
|
|
}
|
|
|
|
declare module '*.zip' {
|
|
const src: string;
|
|
export default src;
|
|
}
|