Skip to content

Commit

Permalink
fix: casing fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
lemon-mario committed Mar 5, 2019
1 parent ee5c61d commit 7795722
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 18 deletions.
16 changes: 8 additions & 8 deletions src/functions/index.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import CountItems from "./countItems";
import CreateItem from "./createItem";
import DeleteItem from "./deleteItem";
import DeleteItems from "./deleteItems";
import GetItem from "./getItem";
import GetItems from "./getItems";
import ReplaceItem from "./replaceItem";
import UpdateItem from "./updateItem";
import CountItems from "./CountItems";
import CreateItem from "./CreateItem";
import DeleteItem from "./DeleteItem";
import DeleteItems from "./DeleteItems";
import GetItem from "./GetItem";
import GetItems from "./GetItems";
import ReplaceItem from "./ReplaceItem";
import UpdateItem from "./UpdateItem";

export {
CountItems,
Expand Down
2 changes: 1 addition & 1 deletion src/functions/utils/testItem.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Item from '../../interfaces/item';
import Item from '../../interfaces/Item';

export interface TestItem extends Item {
readonly booleanProperty: boolean;
Expand Down
4 changes: 2 additions & 2 deletions src/functions/utils/testUsingFilter.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Facade from "../../facade";
import Filter from "../../interfaces/filter";
import Facade from "../../Facade";
import Filter from "../../interfaces/Filter";
import testEntity, { TestItem } from "./testItem";

type FilterAssertion = (filter?: Filter<TestItem>) => Promise<void>;
Expand Down
2 changes: 1 addition & 1 deletion src/interfaces/CursorResult.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Cursor from "./cursor";
import Cursor from "./Cursor";

export default interface CursorResult {
readonly before: Cursor;
Expand Down
2 changes: 1 addition & 1 deletion src/interfaces/Filter.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Item from './item';
import Item from './Item';

export interface ComparisonFilter<Value> {
readonly $eq?: Value;
Expand Down
4 changes: 2 additions & 2 deletions src/interfaces/Options.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Facade from '../facade';
import Item from './item';
import Facade from '../Facade';
import Item from './Item';

export default interface Options<I extends Item> {
readonly facade: Facade<I>;
Expand Down
2 changes: 1 addition & 1 deletion src/interfaces/Pagination.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Cursor from "./cursor";
import Cursor from "./Cursor";

export default interface Pagination {
readonly before?: Cursor;
Expand Down
4 changes: 2 additions & 2 deletions src/interfaces/Sort.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Item from './item';
import SortOrder from './sortOrder';
import Item from './Item';
import SortOrder from './SortOrder';

type Sort<I extends Item> = {
readonly [P in keyof I]?: SortOrder;
Expand Down

0 comments on commit 7795722

Please sign in to comment.