Skip to content

Commit 6c55d8a

Browse files
Sort exports
1 parent b099eb9 commit 6c55d8a

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

packages/database/exp/index.ts

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -23,34 +23,31 @@ import { version } from '../package.json';
2323
import { FirebaseDatabase } from '../src/exp/Database';
2424

2525
export {
26-
getDatabase,
27-
ref,
2826
enableLogging,
27+
getDatabase,
2928
goOffline,
30-
refFromURL,
3129
goOnline,
30+
ref,
31+
refFromURL,
3232
useDatabaseEmulator
3333
} from '../src/exp/Database';
3434
export {
35+
OnDisconnect,
3536
Reference,
36-
ThenableReference,
37-
OnDisconnect
37+
ThenableReference
3838
} from '../src/exp/Reference';
3939
export { DataSnapshot } from '../src/exp/DataSnapshot';
4040
export {
41-
Query,
42-
query,
4341
ListenOptions,
42+
Query,
4443
QueryConstraint,
44+
Unsubscribe,
4545
endAt,
4646
endBefore,
47-
startAt,
48-
startAfter,
49-
limitToLast,
50-
Unsubscribe,
5147
equalTo,
5248
get,
5349
limitToFirst,
50+
limitToLast,
5451
off,
5552
onChildAdded,
5653
onChildChanged,
@@ -60,10 +57,13 @@ export {
6057
orderByChild,
6158
orderByKey,
6259
orderByPriority,
63-
orderByValue
60+
orderByValue,
61+
query,
62+
startAfter,
63+
startAt
6464
} from '../src/exp/Query';
65-
export { serverTimestamp, increment } from '../src/exp/ServerValue';
66-
export { TransactionOptions, runTransaction } from '../src/exp/Transaction';
65+
export { increment, serverTimestamp } from '../src/exp/ServerValue';
66+
export { runTransaction, TransactionOptions } from '../src/exp/Transaction';
6767

6868
declare module '@firebase/component' {
6969
interface NameServiceMapping {

0 commit comments

Comments
 (0)