Factory type
Factory describes a generic factory function signature. The type is generic over a few parameters:
type Factory<Type, Initial> = (
initialValue: Initial extends true ? Type : Type | undefined
) => Type
Den här webbläsaren stöds inte längre.
Uppgradera till Microsoft Edge och dra nytta av de senaste funktionerna och säkerhetsuppdateringarna, samt teknisk support.
Kommentar
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Factory describes a generic factory function signature. The type is generic over a few parameters:
type Factory<Type, Initial> = (
initialValue: Initial extends true ? Type : Type | undefined
) => Type