UNPKG

sphinxql

Version:

SphinxQL query builder for Node.JS. Supports Sphinx search(2.x and 3.x) and Manticore search

9 lines (8 loc) 222 B
export default interface StatementBuilderBase { /** * Builds the statement and return it as a string. * Each statement has it own implementation to generate a valid * SphinxQL query. */ build() : string; }