mirror of
https://iceshrimp.dev/iceshrimp/iceshrimp
synced 2025-01-22 13:32:53 +09:00
9 lines
133 B
TypeScript
9 lines
133 B
TypeScript
namespace Entity {
|
|
export type Token = {
|
|
access_token: string;
|
|
token_type: string;
|
|
scope: string;
|
|
created_at: number;
|
|
};
|
|
}
|