feat: added jsx support and some tests

This commit is contained in:
Daniel Ledda
2022-05-26 22:00:23 +02:00
parent 182c38232e
commit e5e0c47f68
10 changed files with 173 additions and 75 deletions

View File

@@ -1,26 +1,9 @@
export {
ISubscription,
IPublisher,
Publisher,
} from './lib/Publisher';
export {
default as ISubscriber,
LEvent,
} from './lib/Subscriber';
export {
default as Rung,
RungOptions,
} from './lib/Rung';
export {
default as Capsule,
} from './lib/Capsule';
export {
bootstrap,
frag,
h,
q,
} from './lib/helpers';
import "./lib/jsxFactory";
export type { ISubscription, IPublisher } from './lib/Publisher';
export { Publisher } from './lib/Publisher';
export type { default as ISubscriber, LEvent } from './lib/Subscriber';
export { default as Rung } from './lib/Rung';
export type { RungOptions } from './lib/Rung';
export { default as Capsule } from './lib/Capsule';
export type { ICapsule } from './lib/Capsule';
export { bootstrap, frag, h, q } from './lib/helpers';