Skip to content

Commit

Permalink
fix(casing): fixed cases to PascalCase
Browse files Browse the repository at this point in the history
  • Loading branch information
lemon-mario committed Mar 5, 2019
1 parent a1b7e5c commit 76248a5
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 23 deletions.
6 changes: 3 additions & 3 deletions dist/errors/index.d.ts
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 };
4 changes: 2 additions & 2 deletions dist/errors/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 9 additions & 9 deletions dist/functions/index.d.ts
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 };
18 changes: 9 additions & 9 deletions dist/interfaces/index.d.ts
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 };

0 comments on commit 76248a5

Please sign in to comment.