UNPKG

@ln-markets/sdk

Version:
12 lines (9 loc) 258 B
import type { KyInstance } from 'ky' type ReadNotifications = () => Promise<void> export const createReadNotifications = ( instance: KyInstance ): ReadNotifications => { return async () => { await instance.put('account/notifications').json() } }