Files
yoga/javascript/sources/sync.wasm.js

18 lines
397 B
JavaScript
Raw Normal View History

2022-12-22 03:06:42 -08:00
/**
* 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
* @format
*/
2022-12-23 00:43:57 -08:00
const wrapLib = require('./entry');
const loadYoga = require('./wasm-sync');
2022-12-22 03:06:42 -08:00
2022-12-23 00:43:57 -08:00
module.exports = wrapLib(loadYoga());
2022-12-22 03:06:42 -08:00
export type * from './YGEnums.js';
export type * from './entry';