UNPKG

create-cf-planetscale-app

Version:

Create a Cloudflare workers app for building production ready RESTful APIs using Hono

9 lines (7 loc) 216 B
export const tokenTypes = { ACCESS: 'access', REFRESH: 'refresh', RESET_PASSWORD: 'resetPassword', VERIFY_EMAIL: 'verifyEmail' } as const export type TokenType = (typeof tokenTypes)[keyof typeof tokenTypes]