Adding index.ts s

This commit is contained in:
Dessalines 2020-12-20 13:50:08 -05:00
parent e0bc14593b
commit e812a627b1
3 changed files with 13 additions and 0 deletions

3
src/index.ts Normal file
View file

@ -0,0 +1,3 @@
export * from './interfaces';
export * from './http';
export * from './websocket';

View file

@ -0,0 +1,5 @@
export * from './comment';
export * from './community';
export * from './post';
export * from './site';
export * from './user';

5
src/interfaces/index.ts Normal file
View file

@ -0,0 +1,5 @@
export * from './api';
export * from './aggregates';
export * from './others';
export * from './source';
export * from './views';