Skip to content

Commit

Permalink
feat: restore LocalizableStrings.ts const export
Browse files Browse the repository at this point in the history
  • Loading branch information
GreenMashimaro committed Aug 24, 2022
1 parent 559b695 commit e30d324
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/browser/LocalizableStrings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,8 @@
* @license MIT
*/

export const promptLabel = 'Terminal input';
export const tooMuchOutput = 'Too much output to announce, navigate to rows manually to read';
// eslint-disable-next-line prefer-const
export let promptLabel = 'Terminal input';

// eslint-disable-next-line prefer-const
export let tooMuchOutput = 'Too much output to announce, navigate to rows manually to read';

0 comments on commit e30d324

Please sign in to comment.