Skip to content

Commit 7cb5f7d

Browse files
committed
Refactor
1 parent 407c429 commit 7cb5f7d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/domain-model/src/query/todo/interface/presenter.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { PageInfo } from '../../type';
1+
import { Nullable, PageInfo } from '../../type';
22
import { TodoDto } from '../../../entity';
33

44
export type TodoEdge = {
@@ -7,7 +7,7 @@ export type TodoEdge = {
77
};
88

99
export type AllTodosOutputData = {
10-
edges: TodoEdge[] | null;
10+
edges: Nullable<TodoEdge[]>;
1111
pageInfo?: PageInfo;
1212
};
1313

0 commit comments

Comments
 (0)