Traqula
    Preparing search index...

    Interface SubTyped<Type, SubType>

    A Typed object that is sure to have a subType

    interface SubTyped<
        Type extends string = string,
        SubType extends string = string,
    > {
        subType: SubType;
        type: Type;
    }

    Type Parameters

    • Type extends string = string
    • SubType extends string = string

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    subType: SubType
    type: Type