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

12 lines
271 B
TypeScript
Raw Normal View History

2024-11-24 22:37:53 -05:00
import { plot } from './plot';
import { randomBiUnit } from '../src/randomBiUnit';
import { randomInteger } from '../src/randomInteger';
2024-11-24 18:59:11 -05:00
import Canvas from "../src/Canvas";
const Scope = {
plot,
randomBiUnit,
randomInteger,
2024-11-24 18:59:11 -05:00
Canvas
}
export default Scope;