Skip to content

Commit 1863e3d

Browse files
committed
fix: casing fixes
1 parent 7795722 commit 1863e3d

File tree

21 files changed

+40
-40
lines changed

21 files changed

+40
-40
lines changed

dist/functions/index.d.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import CountItems from "./countItems";
2-
import CreateItem from "./createItem";
3-
import DeleteItem from "./deleteItem";
4-
import DeleteItems from "./deleteItems";
5-
import GetItem from "./getItem";
6-
import GetItems from "./getItems";
7-
import ReplaceItem from "./replaceItem";
8-
import UpdateItem from "./updateItem";
1+
import CountItems from "./CountItems";
2+
import CreateItem from "./CreateItem";
3+
import DeleteItem from "./DeleteItem";
4+
import DeleteItems from "./DeleteItems";
5+
import GetItem from "./GetItem";
6+
import GetItems from "./GetItems";
7+
import ReplaceItem from "./ReplaceItem";
8+
import UpdateItem from "./UpdateItem";
99
export { CountItems, CreateItem, GetItems, GetItem, DeleteItem, DeleteItems, ReplaceItem, UpdateItem };
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import Options from "../../interfaces/options";
1+
import Options from "../../interfaces/Options";
22
import { TestItem } from "../utils/testItem";
33
declare const _default: ({ facade }: Options<TestItem>) => void;
44
export default _default;

dist/functions/updateItem/test.js

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/functions/utils/testItem.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import Item from '../../interfaces/item';
1+
import Item from '../../interfaces/Item';
22
export interface TestItem extends Item {
33
readonly booleanProperty: boolean;
44
readonly stringProperty: string;

dist/functions/utils/testUsingFilter.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import Facade from "../../facade";
2-
import Filter from "../../interfaces/filter";
1+
import Facade from "../../Facade";
2+
import Filter from "../../interfaces/Filter";
33
import { TestItem } from "./testItem";
44
declare type FilterAssertion = (filter?: Filter<TestItem>) => Promise<void>;
55
interface Options {

dist/interfaces/cursor.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/interfaces/cursor.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/interfaces/cursorResult.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import Cursor from "./cursor";
1+
import Cursor from "./Cursor";
22
export default interface CursorResult {
33
readonly before: Cursor;
44
readonly after: Cursor;

dist/interfaces/filter.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import Item from './item';
1+
import Item from './Item';
22
export interface ComparisonFilter<Value> {
33
readonly $eq?: Value;
44
readonly $gt?: Value;

dist/interfaces/item.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)