codegen/examples/somethingEarly.gen.ts

8 lines
136 B
TypeScript
Raw Permalink Normal View History

2024-11-23 14:18:52 -08:00
export default () => {
2025-02-25 20:13:55 -08:00
return new Promise((resolve) => {
setTimeout(() => {
resolve(`export const five = 5;`);
}, 500);
});
2024-11-23 14:18:52 -08:00
};