Options
All
  • Public
  • Public/Protected
  • All
Menu

Index

Type aliases

AnyAnyFunc

AnyAnyFunc: (...args: any[]) => any

Type declaration

    • (...args: any[]): any
    • Type for functions that accept any number of parameters and return any type

      Parameters

      • Rest ...args: any[]

      Returns any

NoneTypeFunc

NoneTypeFunc<T>: () => T

Type parameters

  • T

Type declaration

    • (): T
    • Type for functions that accept no parameters and return values of any type

      Returns T

NoneVoidFunc

NoneVoidFunc: () => void

Type declaration

    • (): void
    • Type for functions that accept no parameters and don't return any value

      Returns void

TypeVoidFunc

TypeVoidFunc<T>: (v: T) => void

Type parameters

  • T

Type declaration

    • (v: T): void
    • Type for functions that accept one parameter of the given type and don't return any value

      Parameters

      • v: T

      Returns void