benchling_typescript_sdk
Version:
Typescript SDK for Benchling API
13 lines (11 loc) • 395 B
text/typescript
import { BenchlingClient } from "../BenchlingClient";
/* Creates plates and transfers contents into them.
* - plate barcode and name are optional
* - entites must be containable with "transferQuantity" and "sourceConcentration"
*/
export class UpdatePlatesWithEntityContents {
private benchling: BenchlingClient;
constructor(client: BenchlingClient) {
this.benchling = client;
}
}