File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed
typescript/packages/common-memory Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,11 @@ import type { Reference } from "merkle-reference";
22
33export type { Reference } ;
44
5+ export type Command = {
6+ watch ?: In < Selector > ;
7+ unwatch ?: In < Selector > ;
8+ } ;
9+
510/**
611 * Unique identifier for the store.
712 */
Original file line number Diff line number Diff line change @@ -37,10 +37,6 @@ interface MemoryServiceSession {
3737 router : Router . Router ;
3838}
3939
40- export type Command = {
41- watch ?: In < Selector > ;
42- unwatch ?: In < Selector > ;
43- } ;
4440
4541class Service implements MemoryService {
4642 constructor ( public router : Router . Router ) { }
Original file line number Diff line number Diff line change 11{
22 "name" : " @commontools/memory" ,
3+ "type" : " module" ,
34 "exports" : {
4- "." : " ./lib .ts"
5+ "." : " ./interface .ts"
56 },
67 "dependencies" : {
78 "merkle-reference" : " ^2.0.1"
You can’t perform that action at this time.
0 commit comments