mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-08-11 20:40:20 +00:00
auth0: Allow to omit params to getUsers (#19098)
This commit is contained in:
Vendored
+1
@@ -360,6 +360,7 @@ export class ManagementClient {
|
||||
|
||||
// Users
|
||||
getUsers(params?: GetUsersData): Promise<User[]>;
|
||||
getUsers(cb: (err: Error, users: User[]) => void): void;
|
||||
getUsers(params?: GetUsersData, cb?: (err: Error, users: User[]) => void): void;
|
||||
|
||||
getUser(params: ObjectWithId): Promise<User>;
|
||||
|
||||
Reference in New Issue
Block a user