mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-27 15:30:57 +00:00
11 lines
284 B
JavaScript
11 lines
284 B
JavaScript
import { compat_exports } from "./compat.mjs";
|
|
//#region src/compat/toolkit.ts
|
|
const toolkit = ((value) => {
|
|
return value;
|
|
});
|
|
Object.assign(toolkit, compat_exports);
|
|
toolkit.partial.placeholder = toolkit;
|
|
toolkit.partialRight.placeholder = toolkit;
|
|
//#endregion
|
|
export { toolkit };
|