UNPKG

@paroicms/server

Version:
7 lines (6 loc) 205 B
import type { Knex } from "knex"; export interface PatAuthResult { accountId: string; email: string; } export declare function authenticateWithPat(cn: Knex, token: string): Promise<PatAuthResult>;