codegen/examples/somethingLate.gen.ts

5 lines
133 B
TypeScript
Raw Permalink Normal View History

2024-11-23 14:18:52 -08:00
export default async (context: any) => {
2025-02-25 20:13:55 -08:00
const { five } = await context.import("./somethingEarly.out");
2024-11-23 14:18:52 -08:00
return five.toString();
};