Better handling of formatting in pasted text

This commit is contained in:
Scott Nonnenberg
2023-05-23 15:00:05 -07:00
committed by GitHub
parent d012779e87
commit a31cf5645e
12 changed files with 105 additions and 43 deletions

View File

@@ -0,0 +1,17 @@
diff --git a/node_modules/@formatjs/intl/src/types.d.ts b/node_modules/@formatjs/intl/src/types.d.ts
index e36094c..2ee473e 100644
--- a/node_modules/@formatjs/intl/src/types.d.ts
+++ b/node_modules/@formatjs/intl/src/types.d.ts
@@ -8,10 +8,8 @@ import { DEFAULT_INTL_CONFIG } from './utils';
import { NumberFormatOptions } from '@formatjs/ecma402-abstract';
declare global {
namespace FormatjsIntl {
- interface Message {
- }
- interface IntlConfig {
- }
+ interface Message { ids?: string }
+ interface IntlConfig { locale?: string }
interface Formats {
}
}