fix: linter issues

This commit is contained in:
Karol Sójko
2022-10-10 12:24:03 +02:00
parent 158ca6ac6a
commit e2e7605414
6 changed files with 9 additions and 15 deletions

View File

@@ -8,8 +8,5 @@ export interface WorkspaceClientInterface {
publicKey?: string
workspaceName?: string
}): Promise<{ uuid: string } | null>
inviteToWorkspace(dto: {
inviteeEmail: string
workspaceUuid: Uuid
}): Promise<{ uuid: string } | null>
inviteToWorkspace(dto: { inviteeEmail: string; workspaceUuid: Uuid }): Promise<{ uuid: string } | null>
}