We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update the current view structure to the new one described, use the following TypeScript interfaces:
export interface ViewNuclei { activeSpectra: ActiveSpectrum[] | null; selectReferences: string; } export interface ViewNuclei1D extends ViewNuclei { verticalAlign: VerticalAlignment; } export interface ViewNuclei2D extends ViewNuclei {} export interface ViewSpectra1D { ranges: RangeToolState; peaks: PeaksViewState; integrals: IntegralsViewState; // Additional properties as needed } export interface ViewSpectra2D { zones: ZoneToolState; // Additional properties as needed } interface ViewState { nuclei1D: Partial<Record<Nuclei, ViewNuclei1D>>; nuclei2D: Partial<Record<`${Nuclei},${Nuclei}`, ViewNuclei2D>>; spectra1D: Record<string, ViewSpectra1D>; spectra2D: Record<string, ViewSpectra2D>; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Update the current view structure to the new one described, use the following TypeScript interfaces:
The text was updated successfully, but these errors were encountered: