switch to new org scheme
This commit is contained in:
18
ts/index.ts
18
ts/index.ts
@ -1,3 +1,19 @@
|
||||
import * as plugins from './searchquery.plugins.js';
|
||||
|
||||
export let demoExport = 'Hi there! :) This is an exported string';
|
||||
export interface ISearchQueryOptions {
|
||||
debounceMs: number;
|
||||
searchParserOptions?: plugins.searchQueryParser.SearchParserOptions;
|
||||
}
|
||||
|
||||
export class SearchQuery {
|
||||
public options: ISearchQueryOptions;
|
||||
public querySubject = new plugins.smartrx.rxjs.Subject<any>();
|
||||
|
||||
constructor(optionsArg: ISearchQueryOptions) {
|
||||
this.options = optionsArg;
|
||||
}
|
||||
|
||||
public async feedSearchString () {
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -1,2 +1,13 @@
|
||||
const removeme = {};
|
||||
export { removeme };
|
||||
// pushrocks scope
|
||||
import * as smartrx from '@pushrocks/smartrx';
|
||||
|
||||
export {
|
||||
smartrx
|
||||
}
|
||||
|
||||
// third party scope
|
||||
import * as searchQueryParser from 'search-query-parser';
|
||||
|
||||
export {
|
||||
searchQueryParser
|
||||
}
|
||||
|
Reference in New Issue
Block a user