diff --git a/apps/backend/src/app/db/schema.ts b/apps/backend/src/app/db/schema.ts index 3d9c75e..cc575bd 100644 --- a/apps/backend/src/app/db/schema.ts +++ b/apps/backend/src/app/db/schema.ts @@ -186,4 +186,11 @@ export const FilesTypeForMachine = pgTable("f_type_for_machines", { .notNull() .references(() => FilesTypesTable.id), }); -export type IFilesTypeForMachine = typeof FilesTypeForMachine.$inferSelect \ No newline at end of file +export type IFilesTypeForMachine = typeof FilesTypeForMachine.$inferSelect + +export interface IWithCount { + count: number; + limit: number; + currentOffset: number; + data: T +} \ No newline at end of file