You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-06-24 23:26:50 +02:00
Tools: Apply rule @typescript-eslint/member-delimiter-style
This commit is contained in:
@ -5,27 +5,27 @@ const { createSelectorCreator, defaultMemoize } = require('reselect');
|
||||
const { createCachedSelector } = require('re-reselect');
|
||||
|
||||
interface MenuItem {
|
||||
id: string,
|
||||
label: string,
|
||||
click: Function,
|
||||
role?: any,
|
||||
accelerator?: string,
|
||||
id: string;
|
||||
label: string;
|
||||
click: Function;
|
||||
role?: any;
|
||||
accelerator?: string;
|
||||
}
|
||||
|
||||
interface MenuItems {
|
||||
[key: string]: MenuItem,
|
||||
[key: string]: MenuItem;
|
||||
}
|
||||
|
||||
interface MenuItemProps {
|
||||
[key: string]: any,
|
||||
[key: string]: any;
|
||||
}
|
||||
|
||||
interface MenuItemPropsCache {
|
||||
[key: string]: any,
|
||||
[key: string]: any;
|
||||
}
|
||||
|
||||
interface MenuItemCache {
|
||||
[key: string]: MenuItems,
|
||||
[key: string]: MenuItems;
|
||||
}
|
||||
|
||||
const createShallowObjectEqualSelector = createSelectorCreator(
|
||||
|
Reference in New Issue
Block a user