26 lines
584 B
TypeScript
26 lines
584 B
TypeScript
![]() |
/**
|
||
|
* 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.
|
||
|
*
|
||
|
* @format
|
||
|
*/
|
||
|
|
||
|
// @ts-ignore untyped from Emscripten
|
||
|
import loadYogaImpl from '../binaries/yoga-wasm-base64-esm.js';
|
||
|
import wrapAssembly from './wrapAssembly.ts';
|
||
|
|
||
|
export type {
|
||
|
Config,
|
||
|
DirtiedFunction,
|
||
|
MeasureFunction,
|
||
|
Node,
|
||
|
Yoga,
|
||
|
} from './wrapAssembly.ts';
|
||
|
|
||
|
export async function loadYoga() {
|
||
|
return wrapAssembly(await loadYogaImpl());
|
||
|
}
|
||
|
export * from './generated/YGEnums.ts';
|