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:
@ -4,20 +4,20 @@ import { stateUtils } from '../../reducer';
|
||||
const separatorItem = { type: 'separator' };
|
||||
|
||||
export interface ToolbarButtonInfo {
|
||||
name: string,
|
||||
tooltip: string,
|
||||
iconName: string,
|
||||
enabled: boolean,
|
||||
onClick(): void,
|
||||
title: string,
|
||||
name: string;
|
||||
tooltip: string;
|
||||
iconName: string;
|
||||
enabled: boolean;
|
||||
onClick(): void;
|
||||
title: string;
|
||||
}
|
||||
|
||||
interface ToolbarButtonCacheItem {
|
||||
info: ToolbarButtonInfo,
|
||||
info: ToolbarButtonInfo;
|
||||
}
|
||||
|
||||
interface ToolbarButtonCache {
|
||||
[key: string]: ToolbarButtonCacheItem,
|
||||
[key: string]: ToolbarButtonCacheItem;
|
||||
}
|
||||
|
||||
export default class ToolbarButtonUtils {
|
||||
|
Reference in New Issue
Block a user