liquid-data-handler
Version:
Transform plate layouts according to liquid handling instructions
19 lines • 469 B
TypeScript
import instructions from "./instructions";
import { keysConfig, platesConfig } from "./configs";
declare const layouts: ({
Plate: string;
Well: string;
sample_id: string;
cell_type: string;
}[] | {
Plate: string;
Well: string;
sample_id: null;
cell_type: string | null;
}[] | {
Plate: string;
Well: string;
meida: string;
}[])[];
export { layouts, keysConfig, platesConfig, instructions };
//# sourceMappingURL=index.d.ts.map