How to get all the function name from import file?

I have a bundle.ts file with a list of imports, for example:

import { addEvent } from './event/add.post';
import { removeEvent } from './event/remove.post';
import { updateEvent } from './event/update.post';

In another script, I like to loop through to get all the functions from bundle.ts

Is that possible?