We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 407c429 commit 7cb5f7dCopy full SHA for 7cb5f7d
src/domain-model/src/query/todo/interface/presenter.ts
@@ -1,4 +1,4 @@
1
-import { PageInfo } from '../../type';
+import { Nullable, PageInfo } from '../../type';
2
import { TodoDto } from '../../../entity';
3
4
export type TodoEdge = {
@@ -7,7 +7,7 @@ export type TodoEdge = {
7
};
8
9
export type AllTodosOutputData = {
10
- edges: TodoEdge[] | null;
+ edges: Nullable<TodoEdge[]>;
11
pageInfo?: PageInfo;
12
13
0 commit comments