Skip to content

Commit

Permalink
feat: Introduce new APIs
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Monolithic `Masto` class has been segregated into several different classes and now you can access through the facede class
  • Loading branch information
neet committed Mar 25, 2021
1 parent 4a6733f commit 69f6131
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
11 changes: 10 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
export { login } from './masto';
export * from './decorators';
export * from './entities';
export * from './errors';
export * from './http';
export * from './repositories';
export * from './serializers';
export * from './ws';

export * from './admin';
export * from './config';
export * from './masto';
export * from './paginator';
export * from './repository';
4 changes: 2 additions & 2 deletions src/serializers/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export { Serializer } from './serializer';
export { SerializerImpl } from './serializer-impl';
export * from './serializer';
export * from './serializer-impl';

0 comments on commit 69f6131

Please sign in to comment.