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 3929f55 commit 9a2c3d1
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/Facade.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import countItems from "./functions/CountItems";
import createItem from "./functions/CreateItem";
import deleteItem from "./functions/DeleteItem";
import deleteItems from "./functions/DeleteItems";
import getItem from "./functions/GetItem";
import getItems from "./functions/GetItems";
import replaceItem from "./functions/ReplaceItem";
import updateItem from "./functions/UpdateItem";
import Item from "./interfaces/item";
import CountItems from "./functions/CountItems";
import CreateItem from "./functions/CreateItem";
import DeleteItem from "./functions/DeleteItem";
import DeleteItems from "./functions/DeleteItems";
import GetItem from "./functions/GetItem";
import GetItems from "./functions/GetItems";
import ReplaceItem from "./functions/ReplaceItem";
import UpdateItem from "./functions/UpdateItem";
import Item from "./interfaces/Item";

export default interface Facade<I extends Item> {
readonly countItems: CountItems<I>;
Expand Down

0 comments on commit 9a2c3d1

Please sign in to comment.