Add simple glob ignore patterns

This commit is contained in:
Andras Schmelczer 2025-05-22 21:41:59 +01:00
parent bbb2adce63
commit ceb217cda8
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
8 changed files with 95 additions and 8 deletions

View file

@ -16,7 +16,8 @@ export enum SyncType {
export enum SyncStatus {
SUCCESS = "SUCCESS",
ERROR = "ERROR"
ERROR = "ERROR",
SKIPPED = "SKIPPED"
}
export type HistoryEntry = CommonHistoryEntry & { timestamp: Date };