From edc7f5ab5338b696b6331caf55258447cc011031 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" Date: Mon, 27 May 2024 03:55:01 +0000 Subject: [PATCH] deploy: 15d313b7c30757fe6acb17a30b975c7d7d218efa --- classes/Cache.html | 4 ++-- classes/Defer.html | 4 ++-- classes/FanOut.html | 4 ++-- classes/Locks.html | 6 +++--- classes/LruMap.html | 8 ++++---- classes/LruTtlMap.html | 14 +++++++------- classes/TimedQueue.html | 8 ++++---- classes/TimedState.html | 10 +++++----- coverage/clover.xml | 4 ++-- coverage/lcov-report/Cache.ts.html | 2 +- coverage/lcov-report/Defer.ts.html | 2 +- coverage/lcov-report/Locks.ts.html | 2 +- coverage/lcov-report/LruMap.ts.html | 2 +- coverage/lcov-report/LruTtlMap.ts.html | 2 +- coverage/lcov-report/TimedQueue.ts.html | 2 +- coverage/lcov-report/TimedState.ts.html | 2 +- coverage/lcov-report/base64.ts.html | 2 +- coverage/lcov-report/codeMutex.ts.html | 2 +- coverage/lcov-report/concurrency.ts.html | 2 +- coverage/lcov-report/concurrencyDecorator.ts.html | 2 +- coverage/lcov-report/createRace.ts.html | 2 +- coverage/lcov-report/fanout.ts.html | 2 +- coverage/lcov-report/go.ts.html | 2 +- coverage/lcov-report/hasKeys.ts.html | 2 +- coverage/lcov-report/hash.ts.html | 2 +- coverage/lcov-report/index.html | 2 +- coverage/lcov-report/mutex.ts.html | 2 +- coverage/lcov-report/normalizeEmail.ts.html | 2 +- coverage/lcov-report/once.ts.html | 2 +- coverage/lcov-report/tick.ts.html | 2 +- coverage/lcov-report/timeout.ts.html | 2 +- coverage/lcov-report/xorshift.ts.html | 2 +- functions/codeMutex.html | 2 +- functions/concurrency.html | 2 +- functions/concurrencyDecorator.html | 2 +- functions/dataUri.html | 2 +- functions/decode64.html | 2 +- functions/encode64.html | 2 +- functions/go.html | 2 +- functions/hasKeys.html | 2 +- functions/hash.html | 2 +- functions/loadCss.html | 2 +- functions/makeXorShift32.html | 2 +- functions/mutex.html | 2 +- functions/normalizeEmail.html | 2 +- functions/of.html | 2 +- functions/once.html | 2 +- functions/promiseMap.html | 2 +- functions/randomStr.html | 2 +- functions/tick.html | 2 +- functions/timeout.html | 2 +- functions/until.html | 2 +- functions/xorShift32.html | 2 +- interfaces/CacheEntry.html | 4 ++-- types/Code.html | 2 +- types/FanOutListener.html | 2 +- types/FanOutUnsubscribe.html | 2 +- 57 files changed, 80 insertions(+), 80 deletions(-) diff --git a/classes/Cache.html b/classes/Cache.html index d42181b..0d70cad 100644 --- a/classes/Cache.html +++ b/classes/Cache.html @@ -1,4 +1,4 @@ -Cache | thingies

Class Cache<T>

Type Parameters

  • T

Constructors

constructor +Cache | thingies

Class Cache<T>

Type Parameters

  • T

Constructors

Properties

Constructors

Properties

entries: number = 0
evictionTime: number = 20000
gcPeriod: number = 30000
map: Map<string, CacheEntry<T>> = ...
maxEntries: number = 100000
method: ((key) => Promise<T>) = ...

Type declaration

    • (key): Promise<T>
    • Parameters

      • key: string

      Returns Promise<T>

timer: any
ttl: number = 10000

Methods

\ No newline at end of file +

Constructors

Properties

entries: number = 0
evictionTime: number = 20000
gcPeriod: number = 30000
map: Map<string, CacheEntry<T>> = ...
maxEntries: number = 100000
method: ((key) => Promise<T>) = ...

Type declaration

    • (key): Promise<T>
    • Parameters

      • key: string

      Returns Promise<T>

timer: any
ttl: number = 10000

Methods

\ No newline at end of file diff --git a/classes/Defer.html b/classes/Defer.html index 515bd43..5cbe7bb 100644 --- a/classes/Defer.html +++ b/classes/Defer.html @@ -2,8 +2,8 @@ promise at any time.

const future = new Defer();

future.promise.then(value => console.log(value));

future.resolve(123);
-

Type Parameters

Constructors

Type Parameters

  • T

Constructors

Properties

Constructors

Properties

promise: Promise<T> = ...
reject: ((error) => void)

Type declaration

    • (error): void
    • Parameters

      • error: any

      Returns void

resolve: ((data) => void)

Type declaration

    • (data): void
    • Parameters

      • data: T

      Returns void

\ No newline at end of file +

Constructors

Properties

promise: Promise<T> = ...
reject: ((error) => void)

Type declaration

    • (error): void
    • Parameters

      • error: any

      Returns void

resolve: ((data) => void)

Type declaration

    • (data): void
    • Parameters

      • data: T

      Returns void

\ No newline at end of file diff --git a/classes/FanOut.html b/classes/FanOut.html index 860b665..bf533c6 100644 --- a/classes/FanOut.html +++ b/classes/FanOut.html @@ -1,5 +1,5 @@ -FanOut | thingies

Class FanOut<D>

Type Parameters

  • D

Constructors

constructor +FanOut | thingies

Class FanOut<D>

Type Parameters

  • D

Constructors

Properties

Methods

Constructors

Properties

listeners: Set<FanOutListener<D>> = ...

Methods

\ No newline at end of file +

Constructors

Properties

listeners: Set<FanOutListener<D>> = ...

Methods

\ No newline at end of file diff --git a/classes/Locks.html b/classes/Locks.html index 3d97a0b..81fc59e 100644 --- a/classes/Locks.html +++ b/classes/Locks.html @@ -6,7 +6,7 @@ within the 5 seconds. The lock will acquired for 2 seconds (default 1000ms).

Locks.get().lock('my-lock', 2000, 5000)(async () => {
console.log('Lock acquired');
});
-

Constructors

Constructors

Properties

now pfx store @@ -15,5 +15,5 @@ lock get

Constructors

  • Parameters

    • store: Record<string, string> = ...
    • now: (() => number) = Date.now
        • (): number
        • Returns the number of milliseconds elapsed since midnight, January 1, 1970 Universal Coordinated Time (UTC).

          -

          Returns number

    • pfx: string = 'lock-'

    Returns Locks

Properties

now: (() => number) = Date.now

Type declaration

    • (): number
    • Returns the number of milliseconds elapsed since midnight, January 1, 1970 Universal Coordinated Time (UTC).

      -

      Returns number

pfx: string = 'lock-'
store: Record<string, string> = ...

Methods

  • Parameters

    • id: string
    • Optional ms: number
    • timeoutMs: number = ...
    • checkMs: number = 10

    Returns (<T>(fn) => Promise<T>)

      • <T>(fn): Promise<T>
      • Type Parameters

        • T

        Parameters

        • fn: (() => Promise<T>)
            • (): Promise<T>
            • Returns Promise<T>

        Returns Promise<T>

\ No newline at end of file +

Returns number

  • pfx: string = 'lock-'
  • Returns Locks

    Properties

    now: (() => number) = Date.now

    Type declaration

      • (): number
      • Returns the number of milliseconds elapsed since midnight, January 1, 1970 Universal Coordinated Time (UTC).

        +

        Returns number

    pfx: string = 'lock-'
    store: Record<string, string> = ...

    Methods

    • Parameters

      • id: string
      • Optional ms: number
      • timeoutMs: number = ...
      • checkMs: number = 10

      Returns (<T>(fn) => Promise<T>)

        • <T>(fn): Promise<T>
        • Type Parameters

          • T

          Parameters

          • fn: (() => Promise<T>)
              • (): Promise<T>
              • Returns Promise<T>

          Returns Promise<T>

    \ No newline at end of file diff --git a/classes/LruMap.html b/classes/LruMap.html index e2b8018..578606d 100644 --- a/classes/LruMap.html +++ b/classes/LruMap.html @@ -1,4 +1,4 @@ -LruMap | thingies

    Class LruMap<K, V>

    Type Parameters

    • K
    • V

    Hierarchy (view full)

    Constructors

    constructor +LruMap | thingies

    Class LruMap<K, V>

    Type Parameters

    • K
    • V

    Hierarchy (view full)

    Constructors

    Properties

    [toStringTag] limit size @@ -14,14 +14,14 @@ set values groupBy -

    Constructors

    Properties

    [toStringTag]: string
    limit: number = Infinity
    size: number

    Returns

    the number of elements in the Map.

    +

    Constructors

    Properties

    [toStringTag]: string
    limit: number = Infinity
    size: number

    Returns

    the number of elements in the Map.

    [species]: MapConstructor

    Methods

    • Returns an iterable of entries in the map.

      Returns IterableIterator<[K, V]>

    • Returns void

    • Parameters

      • key: K

      Returns boolean

      true if an element in the Map existed and has been removed, or false if the element does not exist.

    • Returns an iterable of key, value pairs for every entry in the map.

      Returns IterableIterator<[K, V]>

    • Executes a provided function once per each key/value pair in the Map, in insertion order.

      -

      Parameters

      • callbackfn: ((value, key, map) => void)
          • (value, key, map): void
          • Parameters

            • value: V
            • key: K
            • map: Map<K, V>

            Returns void

      • Optional thisArg: any

      Returns void

    • Parameters

      • key: K

      Returns boolean

      boolean indicating whether an element with the specified key exists or not.

      +

    Parameters

    • callbackfn: ((value, key, map) => void)
        • (value, key, map): void
        • Parameters

          • value: V
          • key: K
          • map: Map<K, V>

          Returns void

    • Optional thisArg: any

    Returns void

    • Parameters

      • key: K

      Returns boolean

      boolean indicating whether an element with the specified key exists or not.

    • Returns an iterable of keys in the map

      -

      Returns IterableIterator<K>

    • Returns an iterable of values in the map

      +

      Returns IterableIterator<K>

    • Returns an iterable of values in the map

      Returns IterableIterator<V>

    Constructors

    Properties

    initState: (() => S)

    Type declaration

      • (): S
      • Returns S

    itemLimit: number = 100

    State will be flushed when it reaches this number of items.

    +
    length: number = 0
    onFlush: ((state) => void) = ...

    Method that will be called when state is flushed.

    +

    Type declaration

      • (state): void
      • Parameters

        • state: S

        Returns void

    reducer: ((state, item) => S)

    Type declaration

      • (state, item): S
      • Parameters

        • state: S
        • item: I

        Returns S

    state: S = ...
    timeLimit: number = 5_000

    State will be flushed after this many milliseconds.

    +
    timer: any = null

    Methods

    \ No newline at end of file diff --git a/coverage/clover.xml b/coverage/clover.xml index a01755f..4dae9ff 100644 --- a/coverage/clover.xml +++ b/coverage/clover.xml @@ -1,6 +1,6 @@ - - + + diff --git a/coverage/lcov-report/Cache.ts.html b/coverage/lcov-report/Cache.ts.html index d4da719..2e8884a 100644 --- a/coverage/lcov-report/Cache.ts.html +++ b/coverage/lcov-report/Cache.ts.html @@ -442,7 +442,7 @@

    All files Cache.ts

    Function codeMutex

    • Executes only one instance of give code at a time. If other calls come in in parallel, they get resolved to the result of the ongoing execution.

      -

      Type Parameters

      • T

      Returns ((code) => Promise<T>)

        • (code): Promise<T>
        • Parameters

          Returns Promise<T>

    \ No newline at end of file +

    Type Parameters

    • T

    Returns ((code) => Promise<T>)

      • (code): Promise<T>
      • Parameters

        Returns Promise<T>

    \ No newline at end of file diff --git a/functions/concurrency.html b/functions/concurrency.html index 9c76a9f..30bd2aa 100644 --- a/functions/concurrency.html +++ b/functions/concurrency.html @@ -1,2 +1,2 @@ concurrency | thingies

    Function concurrency

    \ No newline at end of file +

    Parameters

    • limit: number

    Returns (<T>(code) => Promise<T>)

      • <T>(code): Promise<T>
      • Type Parameters

        • T = unknown

        Parameters

        Returns Promise<T>

    \ No newline at end of file diff --git a/functions/concurrencyDecorator.html b/functions/concurrencyDecorator.html index 8d429a0..1e3643e 100644 --- a/functions/concurrencyDecorator.html +++ b/functions/concurrencyDecorator.html @@ -1,4 +1,4 @@ concurrencyDecorator | thingies

    Function concurrencyDecorator

    • A class method decorator that limits the concurrency of the method to the given number of parallel executions. All invocations are queued and executed in the order they were called.

      -

      Type Parameters

      • This
      • Args extends any[]
      • Return

      Parameters

      • limit: number

      Returns ((fn, context?) => ((this, ...args) => Promise<Return>))

        • (fn, context?): ((this, ...args) => Promise<Return>)
        • Parameters

          • fn: ((this, ...args) => Promise<Return>)
          • Optional context: ClassMethodDecoratorContext<This, ((this, ...args) => Promise<Return>)>

          Returns ((this, ...args) => Promise<Return>)

    \ No newline at end of file +

    Type Parameters

    • This
    • Args extends any[]
    • Return

    Parameters

    • limit: number

    Returns ((fn, context?) => ((this, ...args) => Promise<Return>))

      • (fn, context?): ((this, ...args) => Promise<Return>)
      • Parameters

        • fn: ((this, ...args) => Promise<Return>)
        • Optional context: ClassMethodDecoratorContext<This, ((this, ...args) => Promise<Return>)>

        Returns ((this, ...args) => Promise<Return>)

    \ No newline at end of file diff --git a/functions/dataUri.html b/functions/dataUri.html index 5986443..b877194 100644 --- a/functions/dataUri.html +++ b/functions/dataUri.html @@ -2,4 +2,4 @@

    Parameters

    • data: string

      The data to convert to a data URI.

    • mime: string

      The MIME type of the data.

    Returns string

    The data URI.

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/functions/decode64.html b/functions/decode64.html index 94ec386..ef84276 100644 --- a/functions/decode64.html +++ b/functions/decode64.html @@ -1 +1 @@ -decode64 | thingies

    Function decode64

    \ No newline at end of file +decode64 | thingies

    Function decode64

    \ No newline at end of file diff --git a/functions/encode64.html b/functions/encode64.html index 5debbf9..6520fee 100644 --- a/functions/encode64.html +++ b/functions/encode64.html @@ -1 +1 @@ -encode64 | thingies

    Function encode64

    \ No newline at end of file +encode64 | thingies

    Function encode64

    \ No newline at end of file diff --git a/functions/go.html b/functions/go.html index cfd5e34..2d5da2e 100644 --- a/functions/go.html +++ b/functions/go.html @@ -1,2 +1,2 @@ go | thingies

    Function go

    \ No newline at end of file +

    Type Parameters

    • T

    Parameters

    Returns void

    \ No newline at end of file diff --git a/functions/hasKeys.html b/functions/hasKeys.html index dc76065..17084b1 100644 --- a/functions/hasKeys.html +++ b/functions/hasKeys.html @@ -1 +1 @@ -hasKeys | thingies

    Function hasKeys

    \ No newline at end of file +hasKeys | thingies

    Function hasKeys

    \ No newline at end of file diff --git a/functions/hash.html b/functions/hash.html index d9be5a0..2f8ef45 100644 --- a/functions/hash.html +++ b/functions/hash.html @@ -1 +1 @@ -hash | thingies

    Function hash

    \ No newline at end of file +hash | thingies

    Function hash

    \ No newline at end of file diff --git a/functions/loadCss.html b/functions/loadCss.html index 4bfc6c6..7c0474a 100644 --- a/functions/loadCss.html +++ b/functions/loadCss.html @@ -1 +1 @@ -loadCss | thingies

    Function loadCss

    \ No newline at end of file +loadCss | thingies

    Function loadCss

    \ No newline at end of file diff --git a/functions/makeXorShift32.html b/functions/makeXorShift32.html index dee7b64..811dc53 100644 --- a/functions/makeXorShift32.html +++ b/functions/makeXorShift32.html @@ -1 +1 @@ -makeXorShift32 | thingies

    Function makeXorShift32

    \ No newline at end of file +makeXorShift32 | thingies

    Function makeXorShift32

    \ No newline at end of file diff --git a/functions/mutex.html b/functions/mutex.html index c3039d3..8c1533b 100644 --- a/functions/mutex.html +++ b/functions/mutex.html @@ -1,3 +1,3 @@ mutex | thingies

    Function mutex

    • Executes only one instance of give code at a time. For parallel calls, it returns the result of the ongoing execution.

      -

      Type Parameters

      • This
      • Args extends any[]
      • Return

      Parameters

      • fn: ((this, ...args) => Promise<Return>)
      • Optional context: ClassMethodDecoratorContext<This, ((this, ...args) => Promise<Return>)>

      Returns ((this, ...args) => Promise<Return>)

    \ No newline at end of file +

    Type Parameters

    • This
    • Args extends any[]
    • Return

    Parameters

    • fn: ((this, ...args) => Promise<Return>)
    • Optional context: ClassMethodDecoratorContext<This, ((this, ...args) => Promise<Return>)>

    Returns ((this, ...args) => Promise<Return>)

    \ No newline at end of file diff --git a/functions/normalizeEmail.html b/functions/normalizeEmail.html index 9a78e72..0e6fc9c 100644 --- a/functions/normalizeEmail.html +++ b/functions/normalizeEmail.html @@ -10,4 +10,4 @@

    will be normalized to

    michalloler@gmail.com
     
    -

    Parameters

    • email: string

    Returns string

    \ No newline at end of file +

    Parameters

    • email: string

    Returns string

    \ No newline at end of file diff --git a/functions/of.html b/functions/of.html index 316af21..489448d 100644 --- a/functions/of.html +++ b/functions/of.html @@ -5,4 +5,4 @@
  • Third entry is a boolean, truthy if promise was resolved and falsy if rejected.
  • Type Parameters

    • T
    • E = unknown

    Parameters

    • promise: Promise<T>

      Promise to convert to 3-tuple.

      -

    Returns Promise<[undefined | T, undefined | E, boolean]>

    \ No newline at end of file +

    Returns Promise<[undefined | T, undefined | E, boolean]>

    \ No newline at end of file diff --git a/functions/once.html b/functions/once.html index 9ded4b4..df32e58 100644 --- a/functions/once.html +++ b/functions/once.html @@ -1,3 +1,3 @@ once | thingies

    Function once

    • A class method decorator that limits a method to be called only once. All subsequent calls will return the result of the first call.

      -

      Type Parameters

      • This
      • Args extends any[]
      • Return

      Parameters

      • fn: ((this, ...args) => Return)
      • Optional context: ClassMethodDecoratorContext<This, ((this, ...args) => Return)>

      Returns ((this, ...args) => Return)

    \ No newline at end of file +

    Type Parameters

    • This
    • Args extends any[]
    • Return

    Parameters

    • fn: ((this, ...args) => Return)
    • Optional context: ClassMethodDecoratorContext<This, ((this, ...args) => Return)>

    Returns ((this, ...args) => Return)

    \ No newline at end of file diff --git a/functions/promiseMap.html b/functions/promiseMap.html index 42779b9..b4b8d84 100644 --- a/functions/promiseMap.html +++ b/functions/promiseMap.html @@ -1,3 +1,3 @@ promiseMap | thingies

    Function promiseMap

    • Creates promises of a list of values. Resolves all promises and returns an array of resolved values.

      -

      Parameters

      • values: any[]
      • onValue: ((value) => Promise<unknown>)
          • (value): Promise<unknown>
          • Parameters

            • value: unknown

            Returns Promise<unknown>

      • onError: ((error?, value?, index?) => void) = noop
          • (error?, value?, index?): void
          • Parameters

            • Optional error: unknown
            • Optional value: unknown
            • Optional index: number

            Returns void

      Returns Promise<any>

    \ No newline at end of file +

    Parameters

    • values: any[]
    • onValue: ((value) => Promise<unknown>)
        • (value): Promise<unknown>
        • Parameters

          • value: unknown

          Returns Promise<unknown>

    • onError: ((error?, value?, index?) => void) = noop
        • (error?, value?, index?): void
        • Parameters

          • Optional error: unknown
          • Optional value: unknown
          • Optional index: number

          Returns void

    Returns Promise<any>

    \ No newline at end of file diff --git a/functions/randomStr.html b/functions/randomStr.html index 7945d97..59dfff6 100644 --- a/functions/randomStr.html +++ b/functions/randomStr.html @@ -1 +1 @@ -randomStr | thingies

    Function randomStr

    \ No newline at end of file +randomStr | thingies

    Function randomStr

    \ No newline at end of file diff --git a/functions/tick.html b/functions/tick.html index e27024d..c9c36b6 100644 --- a/functions/tick.html +++ b/functions/tick.html @@ -1 +1 @@ -tick | thingies

    Function tick

    \ No newline at end of file +tick | thingies

    Function tick

    \ No newline at end of file diff --git a/functions/timeout.html b/functions/timeout.html index ef81421..d916248 100644 --- a/functions/timeout.html +++ b/functions/timeout.html @@ -6,4 +6,4 @@

    Type Parameters

    • T

    Parameters

    • ms: number

      Number of milliseconds to wait before timing out.

    • code: Code<T> | Promise<T>

      Code block or promise to execute.

    Returns Promise<T>

    The result of the code block or promise.

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/functions/until.html b/functions/until.html index 8355d3b..940978d 100644 --- a/functions/until.html +++ b/functions/until.html @@ -1 +1 @@ -until | thingies

    Function until

    • Parameters

      • check: (() => boolean | Promise<boolean>)
          • (): boolean | Promise<boolean>
          • Returns boolean | Promise<boolean>

      • pollInterval: number = 1

      Returns Promise<void>

    \ No newline at end of file +until | thingies

    Function until

    • Parameters

      • check: (() => boolean | Promise<boolean>)
          • (): boolean | Promise<boolean>
          • Returns boolean | Promise<boolean>

      • pollInterval: number = 1

      Returns Promise<void>

    \ No newline at end of file diff --git a/functions/xorShift32.html b/functions/xorShift32.html index be4e420..27428e5 100644 --- a/functions/xorShift32.html +++ b/functions/xorShift32.html @@ -1 +1 @@ -xorShift32 | thingies

    Function xorShift32

    \ No newline at end of file +xorShift32 | thingies

    Function xorShift32

    \ No newline at end of file diff --git a/interfaces/CacheEntry.html b/interfaces/CacheEntry.html index f510a7e..c78343a 100644 --- a/interfaces/CacheEntry.html +++ b/interfaces/CacheEntry.html @@ -1,3 +1,3 @@ -CacheEntry | thingies

    Interface CacheEntry<T>

    interface CacheEntry<T> {
        t: number;
        value: T;
    }

    Type Parameters

    • T

    Properties

    t +CacheEntry | thingies

    Interface CacheEntry<T>

    interface CacheEntry<T> {
        t: number;
        value: T;
    }

    Type Parameters

    • T

    Properties

    Properties

    t: number
    value: T
    \ No newline at end of file +

    Properties

    t: number
    value: T
    \ No newline at end of file diff --git a/types/Code.html b/types/Code.html index f0a2854..94b1b14 100644 --- a/types/Code.html +++ b/types/Code.html @@ -1 +1 @@ -Code | thingies

    Type alias Code<T>

    Code<T>: (() => Promise<T>)

    Type Parameters

    • T = unknown

    Type declaration

      • (): Promise<T>
      • Returns Promise<T>

    \ No newline at end of file +Code | thingies

    Type alias Code<T>

    Code<T>: (() => Promise<T>)

    Type Parameters

    • T = unknown

    Type declaration

      • (): Promise<T>
      • Returns Promise<T>

    \ No newline at end of file diff --git a/types/FanOutListener.html b/types/FanOutListener.html index b7f64e3..02c2f91 100644 --- a/types/FanOutListener.html +++ b/types/FanOutListener.html @@ -1 +1 @@ -FanOutListener | thingies

    Type alias FanOutListener<D>

    FanOutListener<D>: ((data) => void)

    Type Parameters

    • D

    Type declaration

      • (data): void
      • Parameters

        • data: D

        Returns void

    \ No newline at end of file +FanOutListener | thingies

    Type alias FanOutListener<D>

    FanOutListener<D>: ((data) => void)

    Type Parameters

    • D

    Type declaration

      • (data): void
      • Parameters

        • data: D

        Returns void

    \ No newline at end of file diff --git a/types/FanOutUnsubscribe.html b/types/FanOutUnsubscribe.html index eda4bc2..9817bcb 100644 --- a/types/FanOutUnsubscribe.html +++ b/types/FanOutUnsubscribe.html @@ -1 +1 @@ -FanOutUnsubscribe | thingies

    Type alias FanOutUnsubscribe

    FanOutUnsubscribe: (() => void)

    Type declaration

      • (): void
      • Returns void

    \ No newline at end of file +FanOutUnsubscribe | thingies

    Type alias FanOutUnsubscribe

    FanOutUnsubscribe: (() => void)

    Type declaration

      • (): void
      • Returns void

    \ No newline at end of file