Fix property order in ManageImportListsModalRow TypeScript definition

This commit is contained in:
scphantm 2026-05-03 14:06:44 -04:00
parent f715649231
commit 18fd8c2929
No known key found for this signature in database
GPG key ID: 3512C53D8C6FC41E

View file

@ -6,8 +6,9 @@ interface CssExports {
'name': string;
'qualityProfileId': string;
'rootFolderPath': string;
'tagExisting': string;
'tags': string;
'tagExisting': string;
}
export const cssExports: CssExports;
export default cssExports;