13 lines
231 B
TypeScript
13 lines
231 B
TypeScript
import { APIClient } from './api';
|
|
import { Endpoints } from './endpoints';
|
|
import Stream from './streaming';
|
|
import { Acct } from './acct';
|
|
|
|
export {
|
|
APIClient,
|
|
Endpoints,
|
|
Stream,
|
|
Acct
|
|
};
|
|
|
|
export * as entities from './types';
|