2024-06-07 20:17:03 +03:00
|
|
|
/**
|
|
|
|
* Module: Schema of Synthesis Operations.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import { ILibraryItemData } from './library';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Represents backend data for Schema of Synthesis Operations.
|
|
|
|
*/
|
|
|
|
export interface IOperationSchemaData extends ILibraryItemData {
|
2024-06-21 23:46:57 +03:00
|
|
|
additional_data?: number[];
|
2024-06-07 20:17:03 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Represents Schema of Synthesis Operations.
|
|
|
|
*/
|
|
|
|
export interface IOperationSchema extends IOperationSchemaData {
|
2024-06-21 23:46:57 +03:00
|
|
|
producedData: number[]; // TODO: modify this to store calculated state on load
|
2024-06-21 21:46:10 +03:00
|
|
|
}
|