Portal/rsconcept/frontend/src/models/oss.ts
IRBorisov 9a7076d516
Some checks failed
Backend CI / build (3.12) (push) Waiting to run
Frontend CI / build (18.x) (push) Has been cancelled
Revert "Improting synthesis implementation pt1"
2024-06-21 23:47:23 +03:00

20 lines
470 B
TypeScript

/**
* Module: Schema of Synthesis Operations.
*/
import { ILibraryItemData } from './library';
/**
* Represents backend data for Schema of Synthesis Operations.
*/
export interface IOperationSchemaData extends ILibraryItemData {
additional_data?: number[];
}
/**
* Represents Schema of Synthesis Operations.
*/
export interface IOperationSchema extends IOperationSchemaData {
producedData: number[]; // TODO: modify this to store calculated state on load
}