mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-18 09:35:20 +02:00
9 lines
320 B
TypeScript
9 lines
320 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}`);
|
|
return (item as any)[propName];
|
|
}
|