cheminfo-types
Advanced tools
Comparing version 0.5.0 to 0.6.0
{ | ||
"name": "cheminfo-types", | ||
"version": "0.5.0", | ||
"version": "0.6.0", | ||
"description": "Types for cheminfo packages and cheminfo data schema ", | ||
@@ -5,0 +5,0 @@ "main": "./src/index.d.ts", |
@@ -6,4 +6,16 @@ import { DoubleArray } from '../../core/DoubleArray'; | ||
export interface MeasurementXY<DataType extends DoubleArray = DoubleArray> { | ||
/** | ||
* Variables containing the data of the measurement. | ||
* It must contain at least the variable `x` and `y` | ||
*/ | ||
variables: MeasurementXYVariables<DataType>; | ||
/** | ||
* Short description about the result of the measurement | ||
*/ | ||
description?: string; | ||
/** | ||
* May contain the type of data. This is practical when you have a bunch of data | ||
* of different types | ||
*/ | ||
dataType?: string; | ||
settings?: Record<string, any>; | ||
@@ -10,0 +22,0 @@ meta?: Record<string, any>; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
8851
253