fix(core): Refactor plugin exports to improve modularity

This commit is contained in:
2024-10-02 15:45:45 +02:00
parent 16fd982c57
commit cc934a9c0e
5 changed files with 293 additions and 553 deletions

View File

@ -0,0 +1,21 @@
import * as smartdelay from '@push.rocks/smartdelay';
import * as smartmarkdown from '@push.rocks/smartmarkdown';
import * as smartpromise from '@push.rocks/smartpromise';
import * as SweetScroll from 'sweet-scroll';
import * as smartstate from '@push.rocks/smartstate';
import * as smartrx from '@push.rocks/smartrx';
import * as smartstring from '@push.rocks/smartstring';
import * as smarturl from '@push.rocks/smarturl';
import * as typedrequest from '@api.global/typedrequest';
export {
smartdelay,
smartmarkdown,
smartpromise,
SweetScroll,
smartstate,
smartrx,
smartstring,
smarturl,
typedrequest
};