23 lines
454 B
JavaScript
23 lines
454 B
JavaScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @flow strict
|
|
* @noformat
|
|
* @generated by scripts/releases/set-version.js
|
|
*/
|
|
|
|
export const version: $ReadOnly<{
|
|
major: number,
|
|
minor: number,
|
|
patch: number,
|
|
prerelease: string | null,
|
|
}> = {
|
|
major: 0,
|
|
minor: 81,
|
|
patch: 5,
|
|
prerelease: null,
|
|
};
|