Skip to main content
Version: v1

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 declare type FluidObjectKeys<T> = keyof FluidObject<T>;

Type Parameters

Parameter Description
T