iceshrimp-legacy/packages/client/src/stream.ts
2022-12-11 19:24:12 -08:00

9 lines
226 B
TypeScript

import * as Misskey from 'calckey-js';
import { markRaw } from 'vue';
import { $i } from '@/account';
import { url } from '@/config';
export const stream = markRaw(new Misskey.Stream(url, $i ? {
token: $i.token,
} : null));