1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-07-16 00:14:34 +02:00

Tools: Apply rule @typescript-eslint/type-annotation-spacing

This commit is contained in:
Laurent Cozic
2020-11-12 19:13:28 +00:00
parent 62feb7ff60
commit d20694e52c
291 changed files with 2205 additions and 2203 deletions

View File

@ -14,8 +14,8 @@ interface MultiNoteActionsProps {
plugins: PluginStates,
}
function styles_(props:MultiNoteActionsProps) {
return buildStyle('MultiNoteActions', props.themeId, (theme:any) => {
function styles_(props: MultiNoteActionsProps) {
return buildStyle('MultiNoteActions', props.themeId, (theme: any) => {
return {
root: {
display: 'inline-flex',
@ -35,10 +35,10 @@ function styles_(props:MultiNoteActionsProps) {
});
}
export default function MultiNoteActions(props:MultiNoteActionsProps) {
export default function MultiNoteActions(props: MultiNoteActionsProps) {
const styles = styles_(props);
const multiNotesButton_click = (item:any) => {
const multiNotesButton_click = (item: any) => {
if (item.submenu) {
item.submenu.popup(bridge().window());
} else {