Schema for indexed fields for use with declarative JSON query.

interface IndexField {
    name?: string;
    type?: string;
    [propName: string]: any;
}

Indexable

[propName: string]: any

IndexField accepts additional properties.

Properties

Properties

name?: string

Name of the field.

type?: string

The type of the named field.

Generated using TypeDoc