mirror of https://github.com/ghostfolio/ghostfolio
Browse Source
* feat(client): implement CreateWatchlistItemForm * feat(client): implement inject function * feat(client): remove formBuilder injection * fix(client): use AssetProfileIdentifier instead of SymbolProfile * feat(client): implement defaultLocale to resolve type error * fix(client): replace deprecated getDeviceInfo with deviceInfo signal * feat(client): tighten up encapsulation and immutabilitypull/6735/head
committed by
GitHub
4 changed files with 60 additions and 48 deletions
@ -1,4 +1,12 @@ |
|||
import type { AssetProfileIdentifier } from '@ghostfolio/common/interfaces'; |
|||
|
|||
import type { FormControl, FormGroup } from '@angular/forms'; |
|||
|
|||
export interface CreateWatchlistItemDialogParams { |
|||
deviceType: string; |
|||
locale: string; |
|||
} |
|||
|
|||
export type CreateWatchlistItemForm = FormGroup<{ |
|||
searchSymbol: FormControl<AssetProfileIdentifier | null>; |
|||
}>; |
|||
|
|||
Loading…
Reference in new issue