We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e711a20 commit 14f6589Copy full SHA for 14f6589
js/dx.aspnet.data.d.ts
@@ -1,4 +1,4 @@
1
-import CustomStore from "devextreme/data/custom_store";
+import DxCustomStore from "devextreme/data/custom_store";
2
3
interface Options {
4
key?: string|Array<string>,
@@ -41,4 +41,8 @@ interface Options {
41
onPush?: (changes: Array<any>) => void;
42
}
43
44
+declare class CustomStore extends DxCustomStore {
45
+ byKey(key: any | string | number): any;
46
+}
47
+
48
export function createStore(options: Options): CustomStore;
0 commit comments