mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-04-17 15:23:36 +01:00
Bundle everything with rolldown
This commit is contained in:
@@ -2,33 +2,33 @@
|
||||
// SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
import { CallLinkRootKey } from '@signalapp/ringrtc';
|
||||
import * as Bytes from '../../Bytes.std.js';
|
||||
import * as Bytes from '../../Bytes.std.ts';
|
||||
import type {
|
||||
CallLinkRecord,
|
||||
CallLinkStateType,
|
||||
CallLinkType,
|
||||
DefunctCallLinkType,
|
||||
} from '../../types/CallLink.std.js';
|
||||
} from '../../types/CallLink.std.ts';
|
||||
import {
|
||||
callLinkRestrictionsSchema,
|
||||
callLinkRecordSchema,
|
||||
defunctCallLinkRecordSchema,
|
||||
} from '../../types/CallLink.std.js';
|
||||
import { toAdminKeyBytes } from '../../util/callLinks.std.js';
|
||||
} from '../../types/CallLink.std.ts';
|
||||
import { toAdminKeyBytes } from '../../util/callLinks.std.ts';
|
||||
import {
|
||||
callLinkToRecord,
|
||||
callLinkFromRecord,
|
||||
defunctCallLinkToRecord,
|
||||
defunctCallLinkFromRecord,
|
||||
} from '../../util/callLinksRingrtc.node.js';
|
||||
import type { ReadableDB, WritableDB } from '../Interface.std.js';
|
||||
import { sql } from '../util.std.js';
|
||||
import { strictAssert } from '../../util/assert.std.js';
|
||||
} from '../../util/callLinksRingrtc.node.ts';
|
||||
import type { ReadableDB, WritableDB } from '../Interface.std.ts';
|
||||
import { sql } from '../util.std.ts';
|
||||
import { strictAssert } from '../../util/assert.std.ts';
|
||||
import {
|
||||
CallStatusValue,
|
||||
DirectCallStatus,
|
||||
} from '../../types/CallDisposition.std.js';
|
||||
import { parseStrict, parseUnknown } from '../../util/schemas.std.js';
|
||||
} from '../../types/CallDisposition.std.ts';
|
||||
import { parseStrict, parseUnknown } from '../../util/schemas.std.ts';
|
||||
|
||||
export function callLinkExists(db: ReadableDB, roomId: string): boolean {
|
||||
const [query, params] = sql`
|
||||
|
||||
Reference in New Issue
Block a user