Skip to content

Commit 4884554

Browse files
committed
chore(cli): change type to interface
1 parent a214305 commit 4884554

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/cli/src/lib/services/collections/policies/interfaces.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ export interface DirectusPolicyAccess {
1313
user?: string | null;
1414
sort: number;
1515
}
16-
export type PolicyRolesDiff = {
16+
export interface PolicyRolesDiff {
1717
create: Partial<DirectusPolicyAccess>[];
1818
update: Partial<DirectusPolicyAccess>[];
1919
delete: number[];
20-
};
20+
}

0 commit comments

Comments
 (0)