We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6ac8f3 commit fb7fccbCopy full SHA for fb7fccb
1 file changed
global.d.ts
@@ -95,6 +95,8 @@ interface QPixelStorage {
95
* @param options optional configuration
96
*/
97
get(key: string, options: Omit<QPixelStorageGetOptions, 'parse'> & { parse: true }): object | null;
98
+ get(key: string, options: Omit<QPixelStorageGetOptions, 'parse'> & { parse: false }): string | null;
99
+ get(key: string): string | null;
100
get(key: string, options?: QPixelStorageGetOptions): unknown;
101
/**
102
* Removes a value from storage by a given key
0 commit comments