Skip to content

Instantly share code, notes, and snippets.

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