codegen/examples/somethingLate.gen.ts
2024-11-23 14:18:52 -08:00

5 lines
132 B
TypeScript

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