From 76248a5443835682dc54044255df1f4236c22174 Mon Sep 17 00:00:00 2001 From: Mariocoski Date: Tue, 5 Mar 2019 19:18:00 +0000 Subject: [PATCH] fix(casing): fixed cases to PascalCase --- dist/errors/index.d.ts | 6 +++--- dist/errors/index.js | 4 ++-- dist/functions/index.d.ts | 18 +++++++++--------- dist/interfaces/index.d.ts | 18 +++++++++--------- 4 files changed, 23 insertions(+), 23 deletions(-) diff --git a/dist/errors/index.d.ts b/dist/errors/index.d.ts index 5dd1fc2..3768482 100644 --- a/dist/errors/index.d.ts +++ b/dist/errors/index.d.ts @@ -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 }; diff --git a/dist/errors/index.js b/dist/errors/index.js index 7da75de..26591a2 100644 --- a/dist/errors/index.js +++ b/dist/errors/index.js @@ -4,7 +4,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) { }; Object.defineProperty(exports, "__esModule", { value: true }); var ConflictingItemError_1 = __importDefault(require("./ConflictingItemError")); -exports.conflictingItemError = ConflictingItemError_1.default; +exports.ConflictingItemError = ConflictingItemError_1.default; var ItemNotFoundError_1 = __importDefault(require("./ItemNotFoundError")); -exports.itemNotFoundError = ItemNotFoundError_1.default; +exports.ItemNotFoundError = ItemNotFoundError_1.default; //# sourceMappingURL=index.js.map \ No newline at end of file diff --git a/dist/functions/index.d.ts b/dist/functions/index.d.ts index c04160a..793df08 100644 --- a/dist/functions/index.d.ts +++ b/dist/functions/index.d.ts @@ -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 }; diff --git a/dist/interfaces/index.d.ts b/dist/interfaces/index.d.ts index becbd9e..df0533c 100644 --- a/dist/interfaces/index.d.ts +++ b/dist/interfaces/index.d.ts @@ -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 };