Skip to content

Commit 52390b1

Browse files
committed
chore: types
1 parent 6874576 commit 52390b1

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

dist/js/entity/mixins/DefaultableMixin.d.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,4 @@ export type DefaultableInMemoryEntity = {
1010
export type DefaultableInMemoryStaticEntity = {
1111
createDefault: () => InMemoryEntity & DefaultableInMemoryEntity;
1212
};
13-
export type DefaultableInMemoryEntityConstructor = Constructor<DefaultableInMemoryEntity>;
14-
export type DefaultableConstructor = DefaultableInMemoryEntityConstructor & DefaultableInMemoryStaticEntity;
13+
export type DefaultableInMemoryEntityConstructor = Constructor<DefaultableInMemoryEntity> & DefaultableInMemoryStaticEntity;

src/js/entity/mixins/DefaultableMixin.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,5 @@ export type DefaultableInMemoryStaticEntity = {
4444
createDefault: () => InMemoryEntity & DefaultableInMemoryEntity;
4545
};
4646

47-
export type DefaultableInMemoryEntityConstructor = Constructor<DefaultableInMemoryEntity>;
48-
export type DefaultableConstructor = DefaultableInMemoryEntityConstructor &
47+
export type DefaultableInMemoryEntityConstructor = Constructor<DefaultableInMemoryEntity> &
4948
DefaultableInMemoryStaticEntity;

0 commit comments

Comments
 (0)