Interface CustomFactoryService<Properties, Specifics>

interface CustomFactoryService<
    Properties extends CustomTypeProperties,
    Specifics extends TypirSpecifics,
> {
    create(
        typeDetails: CustomTypeDetails<Properties, Specifics>,
    ): CustomTypeConfigurationChain<Properties, Specifics>;
    get(
        properties: CustomTypeInitialization<Properties, Specifics>,
    ): TypeReference<CustomType<Properties, Specifics>, Specifics>;
}

Type Parameters

Implemented by

Methods

Methods