Skip to content

Commit aa7c1e9

Browse files
committed
apiExtractor
1 parent 5eef39a commit aa7c1e9

File tree

1 file changed

+35
-1
lines changed

1 file changed

+35
-1
lines changed

lib/msal-browser/apiReview/msal-browser.api.md

Lines changed: 35 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -564,7 +564,7 @@ export class BrowserPerformanceMeasurement implements IPerformanceMeasurement {
564564
// Warning: (ae-forgotten-export) The symbol "IWindowStorage" needs to be exported by the entry point index.d.ts
565565
// Warning: (ae-missing-release-tag) "BrowserStorage" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
566566
//
567-
// @public (undocumented)
567+
// @public @deprecated (undocumented)
568568
export class BrowserStorage implements IWindowStorage<string> {
569569
constructor(cacheLocation: string);
570570
// (undocumented)
@@ -1166,6 +1166,23 @@ export type LoadTokenOptions = {
11661166
extendedExpiresOn?: number;
11671167
};
11681168

1169+
// Warning: (ae-missing-release-tag) "LocalStorage" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
1170+
//
1171+
// @public (undocumented)
1172+
export class LocalStorage implements IWindowStorage<string> {
1173+
constructor();
1174+
// (undocumented)
1175+
containsKey(key: string): boolean;
1176+
// (undocumented)
1177+
getItem(key: string): string | null;
1178+
// (undocumented)
1179+
getKeys(): string[];
1180+
// (undocumented)
1181+
removeItem(key: string): void;
1182+
// (undocumented)
1183+
setItem(key: string, value: string): void;
1184+
}
1185+
11691186
export { Logger }
11701187

11711188
export { LogLevel }
@@ -1579,6 +1596,23 @@ export { ServerError }
15791596

15801597
export { ServerResponseType }
15811598

1599+
// Warning: (ae-missing-release-tag) "SessionStorage" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
1600+
//
1601+
// @public (undocumented)
1602+
export class SessionStorage implements IWindowStorage<string> {
1603+
constructor();
1604+
// (undocumented)
1605+
containsKey(key: string): boolean;
1606+
// (undocumented)
1607+
getItem(key: string): string | null;
1608+
// (undocumented)
1609+
getKeys(): string[];
1610+
// (undocumented)
1611+
removeItem(key: string): void;
1612+
// (undocumented)
1613+
setItem(key: string, value: string): void;
1614+
}
1615+
15821616
// Warning: (ae-missing-release-tag) "SignedHttpRequest" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
15831617
//
15841618
// @public (undocumented)

0 commit comments

Comments
 (0)