refactor: prefer type over interface

Signed-off-by: izzy <me@insrt.uk>
This commit is contained in:
izzy
2026-02-11 15:54:06 +00:00
parent 6c38417ebd
commit cc7d8f2335
4 changed files with 8 additions and 8 deletions

View File

@@ -6,10 +6,10 @@ import { IntegrityReportType } from 'src/enum';
import { DB } from 'src/schema';
import { IntegrityReportTable } from 'src/schema/tables/integrity-report.table';
export interface ReportPaginationOptions {
export type ReportPaginationOptions = {
cursor?: string;
limit: number;
}
};
@Injectable()
export class IntegrityRepository {