Skip to content

Commit

Permalink
Fix lint and pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
phalestrivir authored and vscheuber committed Jan 21, 2025
1 parent 0b97517 commit bf798bb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
2 changes: 0 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 2 additions & 6 deletions src/ops/InternalRoleOps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,17 +74,13 @@ export type InternalRole = {
* @param {string} roleId internal role uuid
* @returns {Promise<InternalRoleSkeleton>} a promise that resolves to an internal role object
*/
deleteInternalRole(
roleId: string
): Promise<InternalRoleSkeleton>;
deleteInternalRole(roleId: string): Promise<InternalRoleSkeleton>;
/**
* Delete internal role by name
* @param {string} roleName internal role name
* @returns {Promise<InternalRoleSkeleton>} a promise that resolves to an internal role object
*/
deleteInternalRoleByName(
roleName: string
): Promise<InternalRoleSkeleton>;
deleteInternalRoleByName(roleName: string): Promise<InternalRoleSkeleton>;
/**
* Delete all internal roles
* @returns {Promise<InternalRoleSkeleton[]>} a promise that resolves to an array of internal role objects
Expand Down

0 comments on commit bf798bb

Please sign in to comment.