Skip to content

Commit

Permalink
feat(CV-0-1): wip, adding structures, features, and README to repos
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-jonathan committed Dec 5, 2023
1 parent db5672e commit 7e14735
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion __tests__/Aggregate.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ import {
defineEvent,
Value,
defineValue,
} from '@/index'
} from '@/'

class Email extends Value<string> {
get domainAddress(): string {
Expand Down
2 changes: 1 addition & 1 deletion __tests__/Entity.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ import {
Entity,
EntityError,
defineEntity,
} from '@/index'
} from '@/'

type User = Entity & {
readonly id: string
Expand Down
2 changes: 1 addition & 1 deletion __tests__/Event.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ import {
Entity,
Event,
defineEvent,
} from '@/index'
} from '@/'

type User = Entity & {
name: string
Expand Down
2 changes: 1 addition & 1 deletion __tests__/Value.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ import {
Value,
ValueError,
defineValue,
} from '@/index'
} from '@/'

class Email extends Value<string> {
get domainAddress(): string {
Expand Down

0 comments on commit 7e14735

Please sign in to comment.