import type { Technique } from './techniqueFromId.ts'; /** * Object with this type helps to produce the out parameters */ type MetaParams = Technique['preParameters']; /** * Each parameter object */ interface OutParam { value: string | number | Array; units?: string; } /** * Stores all parameters with value and optionally units */ export type OutParams = Record; export type GetParams = (metaParams: MetaParams, lines: string[], i: number) => [OutParams, number]; /** * Parses technique from the _.mps_ file * @param lines - lines to read * @param i - index to start reading * @return `[params, newIndex]`, `boolean` indicates whether is a known technique */ export declare const getParams: GetParams; export {}; //# sourceMappingURL=getParamsFromText.d.ts.map