summary refs log tree commit diff
path: root/src/util/schemas/responses/TokenResponse.ts
blob: c811632fa9c71742d207db9ace9b0f20925a8b24 (plain) (blame)
1
2
3
4
5
6
import { UserSettings } from "../../entities";

export interface TokenResponse {
	token: string;
	settings: UserSettings;
}