firefish/packages/megalodon/src/entities/token.ts
ThatOneCalculator 2e4c30e572
chore: 🎨 format
2023-07-13 18:32:23 -07:00

9 lines
133 B
TypeScript

namespace Entity {
export type Token = {
access_token: string;
token_type: string;
scope: string;
created_at: number;
};
}