Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Re-sync with internal repository #413

Merged
merged 1 commit into from
Apr 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,
...
};
Loading