import { Selectable } from 'kysely'; import { DeviceId, SessionId } from '@atproto/oauth-provider'; import { DateISO } from '../../../db'; export interface Device { id: DeviceId; sessionId: SessionId; userAgent: string | null; ipAddress: string; lastSeenAt: DateISO; } export type DeviceEntry = Selectable; export declare const tableName = "device"; export type PartialDB = { [tableName]: Device; }; //# sourceMappingURL=device.d.ts.map