ts-morpheus
    Preparing search index...

    Interface ImportDescriptor

    Descriptor for an import statement

    {
    * namedImports: ['Component', 'OnInit'],
    * module: '@angular/core'
    * }
    interface ImportDescriptor {
        module: string;
        namedImports: string[];
    }
    Index

    Properties

    Properties

    module: string
    namedImports: string[]