fix: types tweaks (#1236)

Summary:
- format types with `prettier`
- apply suggestion from https://github.com/facebook/yoga/pull/1233#discussion_r1120807560

Pull Request resolved: https://github.com/facebook/yoga/pull/1236

Reviewed By: javache

Differential Revision: D44052580

Pulled By: NickGerleman

fbshipit-source-id: 0d9810da460cf4290e15308acdbb705c71f8d8a1
This commit is contained in:
Dmitry Ivakhnenko
2023-03-14 04:15:36 -07:00
committed by Facebook GitHub Bot
parent c09405d58c
commit b17f08ed49
3 changed files with 114 additions and 118 deletions

View File

@@ -7,9 +7,9 @@
* @format
*/
import type {Yoga} from './wrapAsm';
import type { Yoga } from "./wrapAsm";
export * from './generated/YGEnums';
export * from './wrapAsm';
export * from "./generated/YGEnums";
export * from "./wrapAsm";
export function loadYoga(): Promise<Yoga>;