Skip to main content

FluidObjectKeys TypeAlias

This utility type creates a type that is the union of all keys on the generic type which implement the FluidObject pattern.

See FluidObject

For example FluidObjectKeys<IFoo & IBar> would result in "IFoo" | "IBar"

Signature

export type FluidObjectKeys<T> = keyof FluidObject<T>;

Type Parameters

Parameter Description
T