Bring back typedoc
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
# @welshman/store [](https://npmjs.com/package/@welshman/store)
|
||||
# @welshman/app [](https://npmjs.com/package/@welshman/app)
|
||||
|
||||
Utilities for dealing with svelte stores when using welshman.
|
||||
|
||||
|
||||
@@ -179,7 +179,7 @@ describe("collection", () => {
|
||||
getKey: item => item.id,
|
||||
})
|
||||
|
||||
const derived = col.deriveItem(null)
|
||||
const derived = col.deriveItem(undefined)
|
||||
expect(get(derived)).toBeUndefined()
|
||||
})
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import {now} from "@welshman/lib"
|
||||
import {publish, PublishStatus, MockAdapter} from "@welshman/net"
|
||||
import {PublishStatus, MockAdapter} from "@welshman/net"
|
||||
import {NOTE, makeEvent} from "@welshman/util"
|
||||
import {Nip01Signer} from "@welshman/signer"
|
||||
import {LOCAL_RELAY_URL} from "@welshman/relay"
|
||||
@@ -112,7 +112,7 @@ describe("thunk", () => {
|
||||
const send = vi.fn()
|
||||
const track = vi.spyOn(tracker, 'track')
|
||||
const thunk = makeThunk(mockRequest)
|
||||
let status = {}
|
||||
let status: Record<string, any> = {}
|
||||
|
||||
// Subscribe to status updates
|
||||
thunk.status.subscribe(_status => {
|
||||
|
||||
Reference in New Issue
Block a user