permix
Version:
Permix is a lightweight, framework-agnostic, type-safe permissions management library for JavaScript applications on the client and server sides.
11 lines (10 loc) • 322 B
JavaScript
import { PermixError } from "./core/index.mjs";
//#region src/drizzle/errors.ts
var PermixInvalidActionsError = class extends PermixError {
constructor() {
super("`actions` must be a non-empty array of strings.");
this.name = "PermixInvalidActionsError";
}
};
//#endregion
export { PermixInvalidActionsError as t };