/** * create a pack that will only execute when there are registered event handlers * * @param creator - a function to return data that will become parameters for the event handler * array returned means more than 1 parameter. Any other value will be added to an array as a single param */ declare const createLifePack: (creator: () => T) => { resolve: () => Array; }; export default createLifePack; //# sourceMappingURL=lifePack.d.ts.map