2023-03-29 17:33:19 -07:00
|
|
|
import { expectType } from 'tsd';
|
2024-01-19 21:05:09 -08:00
|
|
|
import * as Misskey from '../src/index.js';
|
2023-03-29 17:33:19 -07:00
|
|
|
|
|
|
|
describe('Streaming', () => {
|
|
|
|
test('emit type', async () => {
|
|
|
|
const stream = new Misskey.Stream('https://misskey.test', { token: 'TOKEN' });
|
|
|
|
const mainChannel = stream.useChannel('main');
|
|
|
|
mainChannel.on('notification', notification => {
|
|
|
|
expectType<Misskey.entities.Notification>(notification);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|