permission-node,kubernetes-backend: mark public API as public

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2023-02-02 14:56:09 +01:00
parent ea99ce2c37
commit eb9252186f
14 changed files with 39 additions and 39 deletions
@@ -33,7 +33,7 @@ export type NoInfer<T> = T extends infer S ? S : never;
/**
* Utility function used to parse a PermissionCriteria
* @param criteria - a PermissionCriteria
* @alpha
* @public
*
* @returns `true` if the permission criteria is of type allOf,
* narrowing down `criteria` to the specific type.
@@ -46,7 +46,7 @@ export const isAndCriteria = <T>(
/**
* Utility function used to parse a PermissionCriteria of type
* @param criteria - a PermissionCriteria
* @alpha
* @public
*
* @returns `true` if the permission criteria is of type anyOf,
* narrowing down `criteria` to the specific type.
@@ -59,7 +59,7 @@ export const isOrCriteria = <T>(
/**
* Utility function used to parse a PermissionCriteria
* @param criteria - a PermissionCriteria
* @alpha
* @public
*
* @returns `true` if the permission criteria is of type not,
* narrowing down `criteria` to the specific type.