import type { ColumnType } from 'kysely'; import type * as db_Schema from '../Schema.js'; /** A Better Auth `Date` written as canonical ISO text. */ type Timestamp = ColumnType; /** Columns of Better Auth's pinned `session` model. */ export type Table = Omit & { createdAt: Timestamp; expiresAt: Timestamp; updatedAt: Timestamp; }; export {}; //# sourceMappingURL=authSessions.d.ts.map