9 lines
198 B
TypeScript
9 lines
198 B
TypeScript
import { getInput } from "./internal/input.ts";
|
|
import { getDrawing } from "./internal/drawing.ts";
|
|
|
|
// input reexports
|
|
export let I = getInput();
|
|
|
|
// drawing reexports
|
|
export let D = getDrawing();
|