TenantAtlas/apps/platform/.pnpm-store/v10/files/e6/dc4ea3c23036fabd8a0c013c282a8cdd4b53de133693d0da29e35ace575d36c6f56a39140c4c62fdf9dc5bee26b8aa9e406995733ea8db3a546eb16b2c40b3
Ahmed Darrazi 9f74f7a658
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 51s
feat: compress governance operator outcomes
2026-04-19 14:15:11 +02:00

25 lines
629 B
Plaintext

import { entityKind, is } from "../entity.js";
class GelSequence {
constructor(seqName, seqOptions, schema) {
this.seqName = seqName;
this.seqOptions = seqOptions;
this.schema = schema;
}
static [entityKind] = "GelSequence";
}
function gelSequence(name, options) {
return gelSequenceWithSchema(name, options, void 0);
}
function gelSequenceWithSchema(name, options, schema) {
return new GelSequence(name, options, schema);
}
function isGelSequence(obj) {
return is(obj, GelSequence);
}
export {
GelSequence,
gelSequence,
gelSequenceWithSchema,
isGelSequence
};
//# sourceMappingURL=sequence.js.map