-
Notifications
You must be signed in to change notification settings - Fork 1
/
types.tsx
63 lines (55 loc) · 1.11 KB
/
types.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import { StackNavigationHelpers } from "@react-navigation/stack/lib/typescript/src/types";
export type RootStackParamList = {
Root: undefined;
NotFound: undefined;
};
export type BottomTabParamList = {
Login: undefined;
Register: undefined;
};
export type LoginParamList = {
LoginParamList: undefined;
};
export type RegisterParamList = {
RegisterParamList: undefined;
};
export interface IResponse {
success: boolean;
status: number;
comment: string;
}
export interface IBoard {
pk: number;
fields: {
name: string;
};
}
export type DateTime = string;
export interface IAuthor {
fields: {
username: string;
nickname: string;
};
}
export interface IRoute<T> {
params: T;
}
export interface IPostParamsBase {
pk: number;
author: IAuthor;
board: string;
content: string;
title: string;
}
export interface IPostParams extends IPostParamsBase {
writeAt: Date;
}
export interface IBoardParams {
boardPk: number;
boardName: string;
boardPage: number;
}
export interface IPostPreviewParams extends IPostParamsBase {
navigation: StackNavigationHelpers;
writeAtDT: DateTime;
}