Skip to content

Commit

Permalink
preëmptively rename conflicting file
Browse files Browse the repository at this point in the history
  • Loading branch information
k-yle committed Mar 11, 2024
1 parent 09ec953 commit 7609cfc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
export * from './packet';
export * from './receiver';
export * from './sender';
export * from './merge';
6 changes: 3 additions & 3 deletions src/merge.ts → src/receiver/abstract.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { AssertionError } from 'assert';
import { Packet } from './packet';
import { Receiver } from './receiver';
import type { Payload } from './util';
import { Packet } from '../packet';
import { Receiver } from '../receiver';
import type { Payload } from '../util';

interface MergeProps {
universes?: number[];
Expand Down

0 comments on commit 7609cfc

Please sign in to comment.