Traqula
    Preparing search index...

    Interface Typed<Type>

    Type that is used by the Traqula core package to type raw objects/ Data Transfer Objects (DTO). Enforces the presence of a type string, and that in case the subType key is present, it also be a string.

    interface Typed<Type extends string = string> {
        subType?: string;
        type: Type;
    }

    Type Parameters

    • Type extends string = string

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    subType?: string
    type: Type