codegen/examples/somethingLate.gen.ts

5 lines
132 B
TypeScript
Raw Normal View History

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