aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/client/api/types.ts
blob: 70918fe5b2355c82953172092b63e33396111339 (plain)
1
2
3
4
5
6
7
8
9
10
11
export interface ApiError {
	error: {
		message: string;
		code: string;
	};
}

export interface Tokens {
	accessToken: string;
	refreshToken: string;
}