-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
- Loading branch information
There are no files selected for viewing
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
/** | ||
* Created by Holger Stitz on 10.08.2016. | ||
*/ | ||
import { IPluginDesc } from 'phovea_core'; | ||
import { INamedSet } from 'tdp_core'; | ||
import { IStartMenuSection, IStartMenuSectionOptions } from 'ordino'; | ||
export declare class DummyMenuSection implements IStartMenuSection { | ||
readonly desc: IPluginDesc; | ||
private readonly idType; | ||
private readonly list; | ||
constructor(parent: HTMLElement, desc: IPluginDesc, options: IStartMenuSectionOptions); | ||
push(namedSet: INamedSet): boolean; | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import { IDummyDataSource } from './config'; | ||
import '../scss/main.scss'; | ||
import { IResult, ISearchProvider } from 'tdp_core'; | ||
export declare class DummySearchProvider implements ISearchProvider { | ||
private readonly dataSource; | ||
constructor(dataSource: IDummyDataSource); | ||
search(query: string, page: number, pageSize: number): Promise<Readonly<import("tdp_core").ILookupResult>>; | ||
validate(query: string[]): Promise<IResult[]>; | ||
} | ||
export declare function createA(): DummySearchProvider; | ||
export declare function createB(): DummySearchProvider; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/** | ||
* Created by Samuel Gratzl on 29.01.2016. | ||
*/ | ||
export declare const categories: string[]; | ||
export declare const types: string[]; | ||
export declare const samples: string[]; | ||
/** | ||
* List of ids for parameter form elements | ||
* Reuse this ids and activate the `useSession` option for form elements to have the same selectedIndex between different views | ||
*/ | ||
export declare class ParameterFormIds { | ||
static SAMPLE: string; | ||
static TYPE: string; | ||
static SCORE_ATTRIBUTE: string; | ||
static SCORE_AGGREGATION: string; | ||
} | ||
export interface IDummyDataSource { | ||
name: string; | ||
idType: string; | ||
table: string; | ||
} | ||
export declare const dataSourceA: IDummyDataSource; | ||
export declare const dataSourceB: IDummyDataSource; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
export * from './config'; | ||
export * from './DummyMenuSection'; | ||
export * from './DummySearchProvider'; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.