Skip to content

Commit 92b49af

Browse files
committed
Update PublicApiTest.PublicApiHasNotChanged.verified.txt
1 parent 3ef4f67 commit 92b49af

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

test/LoreSoft.Blazor.Controls.Tests/Snapshots/PublicApiTest.PublicApiHasNotChanged.verified.txt

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1192,6 +1192,21 @@ namespace LoreSoft.Blazor.Controls
11921192
[System.ComponentModel.Description("rectangle")]
11931193
Rectangle = 2,
11941194
}
1195+
public class StorageService
1196+
{
1197+
public const string LocalStorage = "localStorage";
1198+
public const string SessionStorage = "sessionStorage";
1199+
public StorageService(Microsoft.JSInterop.IJSRuntime javaScript, Microsoft.Extensions.Options.IOptions<System.Text.Json.JsonSerializerOptions> options, Microsoft.Extensions.Logging.ILogger<LoreSoft.Blazor.Controls.StorageService> logger) { }
1200+
public System.Threading.Tasks.ValueTask ClearAsync(LoreSoft.Blazor.Controls.StoreType storeType = 1) { }
1201+
public System.Threading.Tasks.ValueTask<T?> GetItemAsync<T>(string key, LoreSoft.Blazor.Controls.StoreType storeType = 1) { }
1202+
public System.Threading.Tasks.ValueTask RemoveItemAsync(string key, LoreSoft.Blazor.Controls.StoreType storeType = 1) { }
1203+
public System.Threading.Tasks.ValueTask SetItemAsync<T>(string key, T value, LoreSoft.Blazor.Controls.StoreType storeType = 1) { }
1204+
}
1205+
public enum StoreType
1206+
{
1207+
Local = 0,
1208+
Session = 1,
1209+
}
11951210
public enum TextAlign
11961211
{
11971212
Start = 0,

0 commit comments

Comments
 (0)