codegen/examples/somethingLate.gen.ts
Dylan Pizzo 5fb6acbb41 wip
2025-02-25 20:13:55 -08:00

5 lines
133 B
TypeScript

export default async (context: any) => {
const { five } = await context.import("./somethingEarly.out");
return five.toString();
};