Welcome to mirror list, hosted at ThFree Co, Russian Federation.

types.ts « client - github.com/thedevs-network/kutt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e832001985c724aa38867a213056fa60426087f9 (plain)
1
2
3
4
5
6
7
8
export interface TokenPayload {
  iss: "ApiAuth";
  sub: string;
  domain: string;
  admin: boolean;
  iat: number;
  exp: number;
}