Skip to content

Commit f2d5fcf

Browse files
committed
Updated exports
1 parent 244b593 commit f2d5fcf

File tree

25 files changed

+3111
-3111
lines changed

25 files changed

+3111
-3111
lines changed

MADE.Collections/package-lock.json

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

MADE.Collections/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@
3737
},
3838
"homepage": "https://github.com/MADE-Apps/MADE.js#readme",
3939
"devDependencies": {
40-
"@types/jest": "^27.0.1",
41-
"jest": "^27.1.1",
40+
"@types/jest": "^27.0.2",
41+
"jest": "^27.2.1",
4242
"ts-jest": "^27.0.5",
43-
"typescript": "^4.4.2"
43+
"typescript": "^4.4.3"
4444
}
4545
}

MADE.Collections/src/Chain.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import IChain from "./IChain";
1+
import { IChain } from "./IChain";
22

33
/**
44
* Defines a chain for instances of objects.
55
*/
6-
export default class Chain<T> implements IChain<T> {
6+
export class Chain<T> implements IChain<T> {
77
private _instances: T[] = [];
88

99
constructor(...instances: T[]) {

MADE.Collections/src/IChain.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* Defines an interface for a chain of objects.
33
*/
4-
export default interface IChain<T> {
4+
export interface IChain<T> {
55
/**
66
* Gets the count of instances within the chain.
77
* @returns The count of instances within the chain.

MADE.Collections/tests/Chain.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import Chain from '../src/Chain'
1+
import { Chain } from '../src/Chain'
22

33
describe("when creating a Chain", () => {
44
it("should initialize with instances", () => {

0 commit comments

Comments
 (0)