Enable more type checking settings

This commit is contained in:
Jamie Kyle 2024-10-08 15:03:19 -07:00 committed by GitHub
parent 0e386ef705
commit dbf057856f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 367 additions and 70 deletions

View file

@ -1,13 +1,15 @@
// Copyright 2022 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import type { MessageFormatElement } from '@formatjs/icu-messageformat-parser';
import { Location } from '@formatjs/icu-messageformat-parser';
import type {
MessageFormatElement,
Location,
} from '@formatjs/icu-messageformat-parser';
import type { Visitor } from './traverse';
import { traverse } from './traverse';
export type Element = MessageFormatElement;
export { Location };
export type { Location };
export type Context = {
messageId: string;