forked from abner/for-legacy-web
Format and automatically fix linted code.
This commit is contained in:
@@ -1,10 +1,12 @@
|
||||
export type Experiments = 'search';
|
||||
export const AVAILABLE_EXPERIMENTS: Experiments[] = [ 'search' ];
|
||||
export const EXPERIMENTS: { [key in Experiments]: { title: string, description: string } } = {
|
||||
'search': {
|
||||
title: 'Search',
|
||||
description: 'Allows you to search for messages in channels.'
|
||||
}
|
||||
export type Experiments = "search";
|
||||
export const AVAILABLE_EXPERIMENTS: Experiments[] = ["search"];
|
||||
export const EXPERIMENTS: {
|
||||
[key in Experiments]: { title: string; description: string };
|
||||
} = {
|
||||
search: {
|
||||
title: "Search",
|
||||
description: "Allows you to search for messages in channels.",
|
||||
},
|
||||
};
|
||||
|
||||
export interface ExperimentOptions {
|
||||
|
||||
Reference in New Issue
Block a user