mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-18 09:35:20 +02:00
10 lines
420 B
TypeScript
10 lines
420 B
TypeScript
import findItemByKey from './findItemByKey';
|
|
import { LayoutItem } from './types';
|
|
|
|
export default function layoutItemProp(layout: LayoutItem, key: string, propName: string) {
|
|
const item = findItemByKey(layout, key);
|
|
if (!item) throw new Error(`Could not find layout item: ${key}`);
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
|
|
return (item as any)[propName];
|
|
}
|