api report

Signed-off-by: Fredrik Adelöw <freben@gmail.com>
This commit is contained in:
Fredrik Adelöw
2022-02-23 16:20:08 +01:00
parent 21fb25f1c3
commit 918c4df3c9
@@ -80,9 +80,16 @@ export class MicrosoftGraphClient {
): Promise<string | undefined>;
getUserProfile(userId: string): Promise<MicrosoftGraph.User>;
getUsers(query?: ODataQuery): AsyncIterable<MicrosoftGraph.User>;
requestApi(path: string, query?: ODataQuery): Promise<Response_2>;
requestApi(
path: string,
query?: ODataQuery,
headers?: Record<string, string>,
): Promise<Response_2>;
requestCollection<T>(path: string, query?: ODataQuery): AsyncIterable<T>;
requestRaw(url: string): Promise<Response_2>;
requestRaw(
url: string,
headers?: Record<string, string>,
): Promise<Response_2>;
}
// @public