Asynchronously deletes the given key. The type is provided here as well because the "real" saved key should
contain type information as well, so the data store will be able to store the same key for different types.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-07 UTC."],[[["\u003cp\u003eThe \u003ccode\u003eIDataStore\u003c/code\u003e interface manages data objects, using a string as the key and an object as the value, with \u003ccode\u003enull\u003c/code\u003e keys not being allowed.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003eClearAsync()\u003c/code\u003e method asynchronously clears all stored values from the data store.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eDeleteAsync<T>(string key)\u003c/code\u003e asynchronously removes a specified key and its associated value, with the generic type parameter \u003ccode\u003eT\u003c/code\u003e aiding in differentiating keys across different types.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eGetAsync<T>(string key)\u003c/code\u003e retrieves the value associated with a given key, returning \u003ccode\u003enull\u003c/code\u003e if the key is not found, and requires the type parameter \u003ccode\u003eT\u003c/code\u003e for type-specific retrieval.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eStoreAsync<T>(string key, T value)\u003c/code\u003e saves a value under a specified key, replacing any previously stored value for that key, and requires the type parameter \u003ccode\u003eT\u003c/code\u003e for type-specific storage.\u003c/p\u003e\n"]]],[],null,[]]