Skip to content

Commit

Permalink
Remove unused export
Browse files Browse the repository at this point in the history
  • Loading branch information
Dominik Piatek authored and dpiatek committed Sep 22, 2023
1 parent 521931c commit b882b4a
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@ import Spaces from './Spaces.js';

export type Space = Awaited<ReturnType<Spaces['get']>>;

// Can be changed to * when we update to TS5

// Note: this should be the only non-type export from this file,
// otherwise the rollup IIFE build will export an object instead of a constructor
export default Spaces;

// Can be changed to * when we update to TS5
export type {
CursorsOptions,
CursorPosition,
Expand All @@ -17,5 +18,3 @@ export type {
Lock,
LockStatus,
} from './types.js';

export { LockAttributes } from './Locks.js';

0 comments on commit b882b4a

Please sign in to comment.