Skip to content

Instantly share code, notes, and snippets.

@stalniy
Created April 10, 2020 10:51
Show Gist options
  • Save stalniy/917207eda380567176713bc69aef1d1d to your computer and use it in GitHub Desktop.
Save stalniy/917207eda380567176713bc69aef1d1d to your computer and use it in GitHub Desktop.
CASL 4.0 strict Ability
import { Ability } from '@casl/ability';
type AppAbilities =
['create' | 'read' | 'update' | 'delete', 'Article'] |
['create' | 'read' | 'update', 'Comment'] |
['read', 'User']
;
export type AppAbility = Ability<AppAbilities>;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment