Files
mattermost-mobile/types/api/session.d.ts
2021-09-23 14:44:50 -03:00

18 lines
389 B
TypeScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
interface Session {
id: string;
create_at: number;
device_id?: string;
expires_at: number;
user_id: string;
}
interface LoginActionResponse {
error?: ClientErrorProps | Error | string;
hasTeams?: boolean;
failed: boolean;
time?: number;
}