2021-05-17 07:55:13 -07:00
|
|
|
import { expectType } from 'tsd';
|
|
|
|
import * as Misskey from '../src';
|
|
|
|
|
|
|
|
describe('Streaming', () => {
|
|
|
|
test('emit type', async () => {
|
|
|
|
const stream = new Misskey.Stream('https://misskey.test', { token: 'TOKEN' });
|
2021-05-22 21:34:36 -07:00
|
|
|
const mainChannel = stream.useChannel('main');
|
2021-05-17 07:55:13 -07:00
|
|
|
mainChannel.on('notification', notification => {
|
|
|
|
expectType<Misskey.entities.Notification>(notification);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|