Created
April 10, 2020 10:51
-
-
Save stalniy/917207eda380567176713bc69aef1d1d to your computer and use it in GitHub Desktop.
CASL 4.0 strict Ability
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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