Represents the types of entities that can be extracted.

interface INLPEntityTypes {
    ner: boolean;
    noun: boolean;
    propn: boolean;
    verb: boolean;
}

Properties

Properties

ner: boolean
noun: boolean
propn: boolean
verb: boolean