Skip to content

Commit

Permalink
Re-sync with internal repository
Browse files Browse the repository at this point in the history
The internal and external repositories are out of sync. This Pull Request attempts to brings them back in sync by patching the GitHub repository. Please carefully review this patch. You must disable ShipIt for your project in order to merge this pull request. DO NOT IMPORT this pull request. Instead, merge it directly on GitHub using the MERGE BUTTON. Re-enable ShipIt after merging.
  • Loading branch information
facebook-github-bot committed Apr 17, 2024
1 parent f23baa0 commit a390591
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions flow-types/typed-js-modules/NumberFormatConfig.js.flow
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
/**
* (c) Meta Platforms, Inc. and affiliates. Confidential and proprietary.
*
* This file is shared between www and fbsource and www is the source of truth.
* When you make change to this file on www, please make sure you test it on
* fbsource and send a diff to update the files too so that the 2 versions are
* kept in sync.
*
* Run the following command to sync the change from www to fbsource.
* js1 upgrade www-shared -p intl_shared_flow --local ~/www
*
* @flow strict
* @format
* @oncall i18n_fbt_oss
*/

// flowlint ambiguous-object-type:error

'use strict';

export type StandardDecimalPatternInfo = {
primaryGroupSize: number,
secondaryGroupSize: number,
...
};

export type NumberingSystemData = {
digits: string,
...
};

// @TypedJSModule
declare module.exports: {
decimalSeparator: string,
numberDelimiter: string,
minDigitsForThousandsSeparator: number,
standardDecimalPatternInfo: StandardDecimalPatternInfo,
numberingSystemData: ?NumberingSystemData,
...
};

0 comments on commit a390591

Please sign in to comment.