switch to new org scheme

This commit is contained in:
2023-07-10 02:41:55 +02:00
parent c2c64f9f6d
commit 9927e03172
5 changed files with 56 additions and 18 deletions

View File

@ -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 () {
}
}

View File

@ -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
}