mirror of
https://github.com/zadam/trilium.git
synced 2025-12-17 05:39:55 +01:00
14 lines
317 B
TypeScript
14 lines
317 B
TypeScript
|
|
interface ExperimentalFeature {
|
||
|
|
id: string;
|
||
|
|
name: string;
|
||
|
|
description: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
export const experimentalFeatures: ExperimentalFeature[] = [
|
||
|
|
{
|
||
|
|
id: "newLayout",
|
||
|
|
name: "New Layout",
|
||
|
|
description: "Try out the new layout for a more modern look and improved usability.",
|
||
|
|
}
|
||
|
|
];
|