-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(casing): fixed cases to PascalCase
- Loading branch information
1 parent
a1b7e5c
commit 76248a5
Showing
4 changed files
with
23 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
import conflictingItemError from "./ConflictingItemError"; | ||
import itemNotFoundError from "./ItemNotFoundError"; | ||
export { conflictingItemError, itemNotFoundError }; | ||
import ConflictingItemError from "./ConflictingItemError"; | ||
import ItemNotFoundError from "./ItemNotFoundError"; | ||
export { ConflictingItemError, ItemNotFoundError }; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
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, createItem, getItems, getItem, deleteItem, deleteItems, replaceItem, 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, CreateItem, GetItems, GetItem, DeleteItem, DeleteItems, ReplaceItem, UpdateItem }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
import cursor from "./Cursor"; | ||
import cursorResult from "./CursorResult"; | ||
import filter from "./Filter"; | ||
import item from "./Item"; | ||
import options from "./Options"; | ||
import pagination from "./Pagination"; | ||
import sort from "./Sort"; | ||
import sortOrder from "./SortOrder"; | ||
export { cursor, cursorResult, filter, item, options, pagination, sort, sortOrder }; | ||
import Cursor from "./Cursor"; | ||
import CursorResult from "./CursorResult"; | ||
import Filter from "./Filter"; | ||
import Item from "./Item"; | ||
import Options from "./Options"; | ||
import Pagination from "./Pagination"; | ||
import Sort from "./Sort"; | ||
import SortOrder from "./SortOrder"; | ||
export { Cursor, CursorResult, Filter, Item, Options, Pagination, Sort, SortOrder }; |