Skip to content

Commit

Permalink
chore: Fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
gibson042 committed Jul 19, 2023
1 parent ce12eca commit ee5da3d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
6 changes: 1 addition & 5 deletions packages/notifier/src/types-ambient.js
Original file line number Diff line number Diff line change
Expand Up @@ -317,11 +317,7 @@
* identifies children by restricted ASCII name and is associated with arbitrary
* string-valued data for each node, defaulting to the empty string.
*
* @typedef {object} StorageNode
* @property {(data: string) => Promise<void>} setValue publishes some data (append to the node)
* @property {() => string} getPath the chain storage path at which the node was constructed
* @property {() => Promise<VStorageKey>} getStoreKey DEPRECATED use getPath
* @property {(subPath: string, options?: {sequence?: boolean}) => StorageNode} makeChildNode
* @typedef {import('@agoric/internal/src/lib-chainStorage').StorageNode} StorageNode
*/

/**
Expand Down
3 changes: 3 additions & 0 deletions packages/notifier/tools/testSupports.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ export const makeFakeStorage = (path, publication) => {
publication.updateState(value);
}
},
delete: async () => {
throw Error('not implemented');
},
makeChildNode: () => storage,
countSetValueCalls: () => setValueCalls,
});
Expand Down

0 comments on commit ee5da3d

Please sign in to comment.