mirror of https://github.com/ghostfolio/ghostfolio
1 changed files with 6 additions and 0 deletions
@ -0,0 +1,6 @@ |
|||
import type { Product } from '@ghostfolio/common/interfaces'; |
|||
|
|||
export type ResolvedProduct = Omit<Product, 'categories' | 'platforms'> & { |
|||
categories?: string[]; |
|||
platforms?: string[]; |
|||
}; |
|||
Loading…
Reference in new issue