screening
Version:
Tools for numbering screening plate
17 lines • 720 B
TypeScript
import type { PlateRequest } from './RequestsTypes.ts';
import type { GenerateIconNMRFileOptions } from './generateIconNMRFile.ts';
export type GenerateIconNMRFileFromPlateOptions = GenerateIconNMRFileOptions & {
/**
* Position of the plate if there is any
* @default 1
*/
plateNumber?: number;
};
/**
* Generate iconNMR text file from requests with plate positions
* @param requests - array of PlateRequest objects
* @param options - options for generating the file
* @returns iconNMR text file
*/
export declare function generateIconNMRFileFromPlate(requests: PlateRequest[], options?: GenerateIconNMRFileFromPlateOptions): string;
//# sourceMappingURL=generateIconNMRFileFromPlate.d.ts.map