interface

IFeature Generic IFeature interface of type T and optional keys K which are not required and will have fallback implementations

Type parameters

  • T

  • K: keyof T

Hierarchy

Index

Properties

Feature

Feature: T

isEnabled

isEnabled: boolean

isRegistered

isRegistered: boolean

isValid

isValid: boolean

Methods

update

  • update(feature: Omit<T, K> & Partial<Pick<T, K>>): void
  • Parameters

    • feature: Omit<T, K> & Partial<Pick<T, K>>

    Returns void