Skip to content

Commit 8206ea3

Browse files
committed
Fix import and export to be in alphabetical order
1 parent a5a30e7 commit 8206ea3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ import { Container } from './Container.js';
33
import type { Event } from './Event.js';
44
import type { EventCandidate } from './EventCandidate.js';
55
import type { EventType } from './EventType.js';
6+
import { isEventQlQueryTrue } from './isEventQlQueryTrue.js';
67
import { isSubjectOnEventId } from './isSubjectOnEventId.js';
78
import { isSubjectPristine } from './isSubjectPristine.js';
8-
import { isEventQlQueryTrue } from './isEventQlQueryTrue.js';
99
import type { ObserveEventsOptions } from './ObserveEventsOptions.js';
1010
import type { Precondition } from './Precondition.js';
1111
import type { ReadEventsOptions } from './ReadEventsOptions.js';
1212

13-
export { Client, Container, isSubjectOnEventId, isSubjectPristine, isEventQlQueryTrue };
13+
export { Client, Container, isEventQlQueryTrue, isSubjectOnEventId, isSubjectPristine };
1414
export type {
1515
Event,
1616
EventCandidate,

0 commit comments

Comments
 (0)