TenantAtlas/apps/platform/.pnpm-store/v10/files/b2/8069ce586bc4d9c6c7d3e95dc93f7a5750fac3d70082f7d088f2b0db4d768de16d430d9ee5fb0863571d5995564d5aa913c0ae6b011044f04a9456102bb85e
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

33 lines
629 B
Plaintext

import { entityKind } from "../entity.js";
class GelPolicy {
constructor(name, config) {
this.name = name;
if (config) {
this.as = config.as;
this.for = config.for;
this.to = config.to;
this.using = config.using;
this.withCheck = config.withCheck;
}
}
static [entityKind] = "GelPolicy";
as;
for;
to;
using;
withCheck;
/** @internal */
_linkedTable;
link(table) {
this._linkedTable = table;
return this;
}
}
function gelPolicy(name, config) {
return new GelPolicy(name, config);
}
export {
GelPolicy,
gelPolicy
};
//# sourceMappingURL=policies.js.map