Skip to content

Commit ee09ded

Browse files
committed
update store-filter
1 parent 2bcf9b6 commit ee09ded

2 files changed

Lines changed: 8 additions & 1 deletion

File tree

.idea/jsLibraryMappings.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/ts/datafast/store-filters.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import {json} from "../common/json";
22
import {Bytes} from "../common/collections";
3+
import {JSONValue} from "../common/value";
34

45
export declare namespace StoreFilter {
56
function get(key: string): Bytes;
@@ -8,7 +9,7 @@ export declare namespace StoreFilter {
89
}
910

1011
export namespace StoreFilter {
11-
export function getJSON(key: string): any {
12+
export function getJSON(key: string): JSONValue | null {
1213
const value = StoreFilter.get(key);
1314
if (value === null) {
1415
return null;

0 commit comments

Comments
 (0)