// @generated // This file is automatically generated by Kanel. Do not modify manually. import type { ColumnType, Selectable, Insertable, Updateable } from 'kysely'; /** Represents the table public.ratelimiter */ export default interface RatelimiterTable { key: ColumnType; request_timestamp: ColumnType; request_count: ColumnType; } export type Ratelimiter = Selectable; export type NewRatelimiter = Insertable; export type RatelimiterUpdate = Updateable;