@hmiproject/helio-sdk
    Preparing search index...

    Type Alias DisplayInstance<PropsType>

    type DisplayInstance<
        PropsType extends Record<string, unknown> = Record<string, unknown>,
    > = {
        classId: string;
        id: string;
        name?: string;
        props: PropsType;
        traitProps?: Record<
            string,
            { $heTraitId: string; props: Record<string, unknown>; version: number },
        >;
    }

    Type Parameters

    • PropsType extends Record<string, unknown> = Record<string, unknown>
    Index

    Properties

    classId: string
    id: string
    name?: string
    props: PropsType
    traitProps?: Record<
        string,
        { $heTraitId: string; props: Record<string, unknown>; version: number },
    >