UNPKG

auth-vir

Version:

Auth made easy and secure via JWT cookies, CSRF tokens, and password hashing helpers.

12 lines (11 loc) 377 B
/** AUTO-GENERATED FILE. DO NOT EDIT DIRECTLY. */ // @ts-nocheck import { defineShape, typedStringShape } from 'object-shape-tester'; import { utcIsoStringShape } from 'date-vir'; export const UserIdShape = typedStringShape(); export const UserShape = defineShape({ id: UserIdShape, createdAt: utcIsoStringShape(), updatedAt: utcIsoStringShape(), name: '', });