ContainsLazy type
Home > @rimitive/core > ContainsLazy
ContainsLazy type
Section titled “ContainsLazy type”Check if array contains any lazy modules
Signature:
export type ContainsLazy<T extends readonly Module[]> = Extract<T[number], { __lazy: true;}> extends never ? false : true;References: Module