AK-21/Graphite-Industrial-Intelligence
0
1import { entityKind, is } from "../entity.js";2class GelSequence {3 constructor(seqName, seqOptions, schema) {4 this.seqName = seqName;5 this.seqOptions = seqOptions;6 this.schema = schema;7 }8 static [entityKind] = "GelSequence";9}10function gelSequence(name, options) {11 return gelSequenceWithSchema(name, options, void 0);12}13function gelSequenceWithSchema(name, options, schema) {14 return new GelSequence(name, options, schema);15}16function isGelSequence(obj) {17 return is(obj, GelSequence);18}19export {20 GelSequence,21 gelSequence,22 gelSequenceWithSchema,23 isGelSequence24};25//# sourceMappingURL=sequence.js.map