mirror of
https://github.com/jeffvli/feishin.git
synced 2026-06-15 16:04:19 +02:00
refactor domain types to rename itemType
This commit is contained in:
@@ -73,15 +73,15 @@ export interface ItemListStateActions {
|
||||
}
|
||||
|
||||
export interface ItemListStateItem {
|
||||
_itemType: LibraryItem;
|
||||
_serverId: string;
|
||||
id: string;
|
||||
itemType: LibraryItem;
|
||||
}
|
||||
|
||||
export type ItemListStateItemWithRequiredProperties = Record<string, unknown> & {
|
||||
_itemType: LibraryItem;
|
||||
_serverId: string;
|
||||
id: string;
|
||||
itemType: LibraryItem;
|
||||
};
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user