Experiment: New search function.

This commit is contained in:
Paul
2021-07-09 14:34:36 +01:00
parent e3d85ff712
commit 2720c8db8f
4 changed files with 57 additions and 8 deletions

View File

@@ -1,5 +1,5 @@
export type Experiments = never;
export const AVAILABLE_EXPERIMENTS: Experiments[] = [];
export type Experiments = 'search';
export const AVAILABLE_EXPERIMENTS: Experiments[] = [ 'search' ];
export interface ExperimentOptions {
enabled?: Experiments[];