ModuleImpl type
Home > @rimitive/core > ModuleImpl
ModuleImpl type
Section titled “ModuleImpl type”Helper type to extract the implementation type from a Module
Signature:
export type ModuleImpl<T> = T extends Module<string, infer TImpl, unknown> ? TImpl : never;References: Module