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

    Type Alias CreateLibraryExtensionOptions

    type CreateLibraryExtensionOptions = {
        actions?: CreateActionResult<any>[];
        author: string;
        description: string;
        dynamicProperties?: CreateDynamicPropertyResult<any>[];
        elements?: CreateElementResult<any>[];
        icons?: CreateIconResult[];
        minimumRequiredHelioVersion: MinimumRequiredHelioVersion;
        name: string;
        version: string;
    }
    Index

    Properties

    actions?: CreateActionResult<any>[]
    author: string

    Author name for this extension

    Will be shown in the IDE

    'My Company'
    
    description: string

    User-facing description for this extension

    Will be shown in the IDE

    'Adds a set of custom control to HELIO'
    
    dynamicProperties?: CreateDynamicPropertyResult<any>[]
    elements?: CreateElementResult<any>[]
    minimumRequiredHelioVersion: MinimumRequiredHelioVersion

    Minimum required HELIO version.

    This is always enforced by the TypeScript type to match the SDK's required version.

    Warning: Ignoring the type will lead to unexpected behavior at runtime.

    name: string

    User-facing name for this extension

    Will be shown in the IDE

    'My Extension'
    
    version: string

    Version number for this extension

    Must follow semantic versioning/semver specification, i.e. MAJOR.MINOR.PATCH.

    '1.9.2'