@typescript-deploys/pr-build 5.3.0-pr-52972-6 → 5.3.0-pr-54242-4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/lib.dom.d.ts CHANGED
@@ -1435,6 +1435,7 @@ interface RTCInboundRtpStreamStats extends RTCReceivedRtpStreamStats {
1435
1435
  keyFramesDecoded?: number;
1436
1436
  kind: string;
1437
1437
  lastPacketReceivedTimestamp?: DOMHighResTimeStamp;
1438
+ mid?: string;
1438
1439
  nackCount?: number;
1439
1440
  packetsDiscarded?: number;
1440
1441
  pliCount?: number;
@@ -1449,6 +1450,7 @@ interface RTCInboundRtpStreamStats extends RTCReceivedRtpStreamStats {
1449
1450
  totalSamplesDuration?: number;
1450
1451
  totalSamplesReceived?: number;
1451
1452
  totalSquaredInterFrameDelay?: number;
1453
+ trackIdentifier: string;
1452
1454
  }
1453
1455
 
1454
1456
  interface RTCLocalSessionDescriptionInit {
@@ -21843,7 +21845,9 @@ interface SubtleCrypto {
21843
21845
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/exportKey) */
21844
21846
  exportKey(format: "jwk", key: CryptoKey): Promise<JsonWebKey>;
21845
21847
  exportKey(format: Exclude<KeyFormat, "jwk">, key: CryptoKey): Promise<ArrayBuffer>;
21848
+ exportKey(format: KeyFormat, key: CryptoKey): Promise<ArrayBuffer | JsonWebKey>;
21846
21849
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/generateKey) */
21850
+ generateKey(algorithm: "Ed25519", extractable: boolean, keyUsages: ReadonlyArray<"sign" | "verify">): Promise<CryptoKeyPair>;
21847
21851
  generateKey(algorithm: RsaHashedKeyGenParams | EcKeyGenParams, extractable: boolean, keyUsages: ReadonlyArray<KeyUsage>): Promise<CryptoKeyPair>;
21848
21852
  generateKey(algorithm: AesKeyGenParams | HmacKeyGenParams | Pbkdf2Params, extractable: boolean, keyUsages: ReadonlyArray<KeyUsage>): Promise<CryptoKey>;
21849
21853
  generateKey(algorithm: AlgorithmIdentifier, extractable: boolean, keyUsages: KeyUsage[]): Promise<CryptoKeyPair | CryptoKey>;
package/lib/lib.es5.d.ts CHANGED
@@ -638,7 +638,8 @@ interface ImportMeta {
638
638
  * augmented via interface merging.
639
639
  */
640
640
  interface ImportCallOptions {
641
- assert?: ImportAssertions;
641
+ /** @deprecated*/ assert?: ImportAssertions;
642
+ with?: ImportAttributes;
642
643
  }
643
644
 
644
645
  /**
@@ -648,6 +649,13 @@ interface ImportAssertions {
648
649
  [key: string]: string;
649
650
  }
650
651
 
652
+ /**
653
+ * The type for the `with` property of the optional second argument to `import()`.
654
+ */
655
+ interface ImportAttributes {
656
+ [key: string]: string;
657
+ }
658
+
651
659
  interface Math {
652
660
  /** The mathematical constant e. This is Euler's number, the base of natural logarithms. */
653
661
  readonly E: number;
@@ -5340,7 +5340,9 @@ interface SubtleCrypto {
5340
5340
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/exportKey) */
5341
5341
  exportKey(format: "jwk", key: CryptoKey): Promise<JsonWebKey>;
5342
5342
  exportKey(format: Exclude<KeyFormat, "jwk">, key: CryptoKey): Promise<ArrayBuffer>;
5343
+ exportKey(format: KeyFormat, key: CryptoKey): Promise<ArrayBuffer | JsonWebKey>;
5343
5344
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/generateKey) */
5345
+ generateKey(algorithm: "Ed25519", extractable: boolean, keyUsages: ReadonlyArray<"sign" | "verify">): Promise<CryptoKeyPair>;
5344
5346
  generateKey(algorithm: RsaHashedKeyGenParams | EcKeyGenParams, extractable: boolean, keyUsages: ReadonlyArray<KeyUsage>): Promise<CryptoKeyPair>;
5345
5347
  generateKey(algorithm: AesKeyGenParams | HmacKeyGenParams | Pbkdf2Params, extractable: boolean, keyUsages: ReadonlyArray<KeyUsage>): Promise<CryptoKey>;
5346
5348
  generateKey(algorithm: AlgorithmIdentifier, extractable: boolean, keyUsages: KeyUsage[]): Promise<CryptoKeyPair | CryptoKey>;