Skip to content

Commit

Permalink
fix: missing type import marker
Browse files Browse the repository at this point in the history
  • Loading branch information
V-ed committed Feb 22, 2024
1 parent a864c9b commit cb487a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/src/@shared/roles/utils.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { specRolesMap } from '.';
import { RoleSpec } from './roles.helper';
import type { RoleSpec } from './roles.helper';

export function rolesIntersect(roles1: string[], roles2: string[]) {
return roles1.some((role1) => roles2.some((role2) => role2 === role1));
Expand Down

0 comments on commit cb487a6

Please sign in to comment.