Files
codegen/examples/somethingLate.gen.ts
Dylan Pizzo 25687860cc build it
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();
};