Amplication AST Libraries Documentation
    Preparing search index...

    Interface defining the arguments required to create a new Import instance.

    Args

    interface Args {
        path: string;
        static_?: boolean;
        wildcard?: boolean;
    }
    Index

    Properties

    path: string

    The fully qualified package path to import

    static_?: boolean

    Whether this is a static import (import static java.lang.Math.*)

    wildcard?: boolean

    Whether this is a wildcard import (import java.util.*)