mirror of
https://github.com/bknd-io/bknd/
synced 2026-08-02 08:06:00 +00:00
12 lines
193 B
TypeScript
12 lines
193 B
TypeScript
export class Permission<Name extends string = string> {
|
|
constructor(public name: Name) {
|
|
this.name = name;
|
|
}
|
|
|
|
toJSON() {
|
|
return {
|
|
name: this.name,
|
|
};
|
|
}
|
|
}
|