@nikovirtala/projen-constructs
    Preparing search index...

    Interface Component

    Configuration for a component to be integrated into a generated project

    interface Component {
        componentClass: any;
        fqn?: string;
        optionsProperty?: string | false | ComponentOptions;
    }
    Index

    Properties

    componentClass: any

    Component class reference

    ignore

    fqn?: string

    Fully qualified name of the component class

    Optional - auto-detected by searching JSII manifests.

    optionsProperty?: string | false | ComponentOptions

    Options property configuration for the generated options interface

    Optional - auto-detected from component constructor. Set to false to disable options property generation. Set to string or object to customize the property name.