mirror of
https://github.com/pybricks/pybricks-code.git
synced 2026-09-12 09:36:27 +00:00
Makes for much less scrolling/jumping around. https://redux.js.org/style-guide/style-guide#structure-files-as-feature-folders-or-ducks
12 lines
268 B
TypeScript
12 lines
268 B
TypeScript
// SPDX-License-Identifier: MIT
|
|
// Copyright (c) 2020 The Pybricks Authors
|
|
//
|
|
// Terminal translation keys.
|
|
|
|
export enum TerminalStringId {
|
|
Copy = 'terminal.copy',
|
|
Paste = 'terminal.paste',
|
|
SelectAll = 'terminal.selectAll',
|
|
Clear = 'terminal.clear',
|
|
}
|