Page Contents
Home > @loopback/context > NonVoid
NonVoid type
Any type except void
. We use this type to enforce that interceptor functions always return a value (including undefined or null).
Signature:
export type NonVoid = string | number | boolean | null | undefined | object;