style: run linter (#232)
This commit is contained in:
parent
0fcfffea57
commit
01d0eb2f0a
2 changed files with 9 additions and 13 deletions
|
@ -1,10 +1,10 @@
|
|||
export {
|
||||
convertForInsert,
|
||||
convertForUpdate,
|
||||
convertFromSelect,
|
||||
convertInputType,
|
||||
convertForInsert,
|
||||
convertForUpdate,
|
||||
convertFromSelect,
|
||||
convertInputType
|
||||
} from './schema-helpers';
|
||||
export { compileQuery } from "./compiler";
|
||||
export { makeViews } from "./views";
|
||||
export { schema, schemaConfig } from "./schema";
|
||||
export { runQuery, runCompiledQuery } from "./schema/run-query";
|
||||
export { compileQuery } from './compiler';
|
||||
export { makeViews } from './views';
|
||||
export { schema, schemaConfig } from './schema';
|
||||
export { runQuery, runCompiledQuery } from './schema/run-query';
|
||||
|
|
|
@ -19,11 +19,7 @@ import {
|
|||
makeClientId,
|
||||
Timestamp
|
||||
} from '../crdt';
|
||||
import {
|
||||
convertForInsert,
|
||||
convertForUpdate,
|
||||
convertFromSelect
|
||||
} from '../aql';
|
||||
import { convertForInsert, convertForUpdate, convertFromSelect } from '../aql';
|
||||
import { shoveSortOrders, SORT_INCREMENT } from './sort';
|
||||
|
||||
export { toDateRepr, fromDateRepr } from '../models';
|
||||
|
|
Loading…
Reference in a new issue