website refactor
This commit is contained in:
@@ -1,4 +1,7 @@
|
||||
export interface IValueObject<Props> {
|
||||
export interface ValueObjectProps<Props> {
|
||||
readonly props: Props;
|
||||
equals(other: IValueObject<Props>): boolean;
|
||||
}
|
||||
equals(other: ValueObjectProps<Props>): boolean;
|
||||
}
|
||||
|
||||
// Alias for backward compatibility
|
||||
export type IValueObject<Props> = ValueObjectProps<Props>;
|
||||
|
||||
Reference in New Issue
Block a user