I have several utility functions. What is the best way to package these up, and then import them?
This is what I am trying to do:
import * as util f
Or you could export is as an object literal:
export const Util = { doSomething(val: string){ return val;}, doSomethingElse(val: string{ return val;} }