speice.io/blog/2024-11-15-playing-with-fire/1-introduction/scope.tsx

12 lines
259 B
TypeScript
Raw Normal View History

import Gasket from "./Gasket";
import { plot } from "./plot";
import { randomBiUnit } from "../src/randomBiUnit";
import { randomInteger } from "../src/randomInteger";
const Scope = {
Gasket,
plot,
randomBiUnit,
randomInteger
};
export default Scope;