import type { IOBuffer } from 'iobuffer'; import type { Technique } from '../../../utility/techniqueFromId.ts'; export type Parameters = Record; /** * Parses current technique (type of experiment carried out.) * @param buffer - our data at an expected offset * @param preParameters - it is a tuple `[name, dataType]` that helps * to read the value of type `dataType` later on. */ export declare function getTechniqueParameters(buffer: IOBuffer, preParameters: Technique['preParameters'], zero: number): Parameters; //# sourceMappingURL=getParameters.d.ts.map