Enforce node: schema for builtins, import extensions

This commit is contained in:
Fedor Indutny
2025-09-16 17:39:03 -07:00
committed by GitHub
parent cc6b8795b8
commit c02565eaa8
2096 changed files with 14955 additions and 14023 deletions

View File

@@ -3,15 +3,19 @@
import type * as client from '@signalapp/libsignal-client';
import type { SignalService as Proto } from '../protobuf';
import type { IncomingWebSocketRequest } from './WebsocketResources';
import type { ServiceIdString, AciString, PniString } from '../types/ServiceId';
import type { TextAttachmentType } from '../types/Attachment';
import type { GiftBadgeStates } from '../components/conversation/Message';
import type { MIMEType } from '../types/MIME';
import type { DurationInSeconds } from '../util/durations';
import type { AnyPaymentEvent } from '../types/Payment';
import type { RawBodyRange } from '../types/BodyRange';
import type { SignalService as Proto } from '../protobuf/index.js';
import type { IncomingWebSocketRequest } from './WebsocketResources.js';
import type {
ServiceIdString,
AciString,
PniString,
} from '../types/ServiceId.js';
import type { TextAttachmentType } from '../types/Attachment.js';
import type { GiftBadgeStates } from '../components/conversation/Message.js';
import type { MIMEType } from '../types/MIME.js';
import type { DurationInSeconds } from '../util/durations/index.js';
import type { AnyPaymentEvent } from '../types/Payment.js';
import type { RawBodyRange } from '../types/BodyRange.js';
export {
IdentityKeyType,
@@ -26,7 +30,7 @@ export {
SignedPreKeyIdType,
SignedPreKeyType,
UnprocessedType,
} from '../sql/Interface';
} from '../sql/Interface.js';
export type StorageServiceCallOptionsType = {
credentials?: StorageServiceCredentials;