🔍 support for search

This commit is contained in:
undergroundwires
2020-01-09 23:02:36 +01:00
parent cafe6e809a
commit 89862b2775
19 changed files with 202 additions and 88 deletions

View File

@@ -4,6 +4,7 @@ export class ApplicationStub implements IApplication {
public readonly totalScripts = 0;
public readonly totalCategories = 0;
public readonly name = 'StubApplication';
public readonly repositoryUrl = 'https://privacy.sexy';
public readonly version = 1;
public readonly categories = new Array<ICategory>();
@@ -23,4 +24,7 @@ export class ApplicationStub implements IApplication {
public getAllScripts(): ReadonlyArray<IScript> {
throw new Error('Method not implemented.');
}
public getAllCategories(): ReadonlyArray<ICategory> {
throw new Error('Method not implemented.');
}
}