mirror of
https://github.com/jwetzell/psn-js.git
synced 2026-09-08 07:49:17 +00:00
switch build to tsdown
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
import { Constants } from '../../constants.js';
|
||||
import { InfoPacketChunk, InfoPacketChunkData } from '../../models/info/info-packet-chunk.js';
|
||||
import type { InfoPacketChunk, InfoPacketChunkData } from '../../models/info/info-packet-chunk.js';
|
||||
import { Decoders } from '../index.js';
|
||||
|
||||
export default (buffer: Uint8Array): InfoPacketChunk => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { InfoSystemNameChunk, InfoSystemNameChunkData } from '../../models/info/info-system-name-chunk.js';
|
||||
import type { InfoSystemNameChunk, InfoSystemNameChunkData } from '../../models/info/info-system-name-chunk.js';
|
||||
import { Decoders } from '../index.js';
|
||||
|
||||
const nameDecoder = new TextDecoder();
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { Constants } from '../../constants.js';
|
||||
import { InfoTrackerChunk, InfoTrackerChunkData } from '../../models/info/info-tracker-chunk.js';
|
||||
import type { InfoTrackerChunk, InfoTrackerChunkData } from '../../models/info/info-tracker-chunk.js';
|
||||
import { Decoders } from '../index.js';
|
||||
|
||||
export default (buffer: Uint8Array): InfoTrackerChunk => {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import { Constants } from '../../constants.js';
|
||||
import { InfoTrackerChunk } from '../../models/info/info-tracker-chunk.js';
|
||||
import { InfoTrackerListChunk, InfoTrackerListChunkData } from '../../models/info/info-tracker-list-chunk.js';
|
||||
import type { InfoTrackerChunk } from '../../models/info/info-tracker-chunk.js';
|
||||
import type { InfoTrackerListChunk, InfoTrackerListChunkData } from '../../models/info/info-tracker-list-chunk.js';
|
||||
import { Decoders } from '../index.js';
|
||||
|
||||
export default (buffer: Uint8Array): InfoTrackerListChunk => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { InfoTrackerNameChunk, InfoTrackerNameChunkData } from '../../models/info/info-tracker-name-chunk.js';
|
||||
import type { InfoTrackerNameChunk, InfoTrackerNameChunkData } from '../../models/info/info-tracker-name-chunk.js';
|
||||
import { Decoders } from '../index.js';
|
||||
|
||||
const nameDecoder = new TextDecoder();
|
||||
|
||||
Reference in New Issue
Block a user