mirror of
https://github.com/makeplane/plane.git
synced 2025-12-16 11:57:56 +01:00
* refactor: permission layer * refactor: add original_role to project member serializer * chore: minor fixes related to permission layer * fix: strict type checking while checking user permissions
7 lines
169 B
TypeScript
7 lines
169 B
TypeScript
export type TProjectTeamspaceList = {
|
|
workspaceSlug: string;
|
|
projectId: string;
|
|
};
|
|
|
|
export const ProjectTeamspaceList: React.FC<TProjectTeamspaceList> = () => null;
|