mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
6 lines
135 B
TypeScript
6 lines
135 B
TypeScript
|
export interface OpenId {
|
||
|
access_token: string;
|
||
|
matrix_server_name: string;
|
||
|
expires_in: number;
|
||
|
token_type: 'Bearer';
|
||
|
}
|