typescript
Yanick Champoux 2022-08-26 13:26:51 -04:00
parent 6a4525f507
commit 36b19316ba
1 changed files with 6 additions and 0 deletions

View File

@ -7,6 +7,12 @@ function isActionGen(action) {
return typeof action === 'function' && action.type;
}
/**
* Updux configuration object
* @typedef {Object} Updux config
* @property {Object} actions - Actions to be made available to the updux.
*/
export class Updux {
#localInitial = {};
#subduxes = {};