Type alias CachedFunction<Fn>

CachedFunction<Fn>: Fn & {
    clear: ((...args) => void);
}

Type Parameters

  • Fn

Type declaration

  • clear: ((...args) => void)
      • (...args): void
      • Parameters

        • Rest ...args: any[]

        Returns void