DEV Community

[Comment from a deleted post]
Collapse
 
hanna profile image
Hanna

some people have a deps.ts file exporting everything:

export {} from "";
export {} from "";
export {} from "";
export {} from "";
Enter fullscreen mode Exit fullscreen mode
 
patarapolw profile image
Pacharapol Withayasakpunt

You can also

export * from "xxx";

Also, this is possible

export * as xxx from "xxx";