1// deno-lint-ignore-file 2/* istanbul ignore file */ 3/* tslint:disable */ 4/* eslint-disable */ 5 6export type accessToken = { 7 id?: string; 8 access_token?: string; 9 user_id?: string; 10 email?: string; 11 created_at?: string; 12}; 13 14