Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
killagu committed Sep 29, 2024
1 parent 5fffe6a commit b12348d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions core/runtime/src/impl/EggObjectImpl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import type {
EggObjectLifecycle,
EggObjectLifeCycleContext,
EggObjectName,
EggPrototype,
EggPrototype, ObjectInfo, QualifierInfo,
} from '@eggjs/tegg-types';
import { EggObjectStatus, InjectType, ObjectInitType } from '@eggjs/tegg-types';
import { IdenticalUtil } from '@eggjs/tegg-lifecycle';
Expand Down Expand Up @@ -109,9 +109,9 @@ export default class EggObjectImpl implements EggObject {
return {
attribute: t,
value: this.proto.getQualifier(t),
};
});
const objInfo = {
} as QualifierInfo;
}) ?? [];
const objInfo: ObjectInfo = {
name: this.proto.name,
qualifiers,
};
Expand Down

0 comments on commit b12348d

Please sign in to comment.