mirror of
				https://github.com/Fabio286/antares.git
				synced 2025-06-05 21:59:22 +02:00 
			
		
		
		
	style: implement eslint simple-import-sort
This commit is contained in:
		| @@ -1,5 +1,6 @@ | ||||
| import { ShortcutRecord } from 'common/shortcuts'; | ||||
| import { ipcRenderer, OpenDialogOptions, OpenDialogReturnValue } from 'electron'; | ||||
|  | ||||
| import { unproxify } from '../libs/unproxify'; | ||||
|  | ||||
| export default class { | ||||
|   | ||||
| @@ -1,5 +1,6 @@ | ||||
| import { ConnectionParams, IpcResponse } from 'common/interfaces/antares'; | ||||
| import { ipcRenderer } from 'electron'; | ||||
|  | ||||
| import connStringConstruct from '../libs/connStringDecode'; | ||||
| import { unproxify } from '../libs/unproxify'; | ||||
|  | ||||
|   | ||||
| @@ -1,6 +1,7 @@ | ||||
| import { ipcRenderer } from 'electron'; | ||||
| import { unproxify } from '../libs/unproxify'; | ||||
| import { IpcResponse } from 'common/interfaces/antares'; | ||||
| import { ipcRenderer } from 'electron'; | ||||
|  | ||||
| import { unproxify } from '../libs/unproxify'; | ||||
|  | ||||
| export default class { | ||||
|    static getDatabases (params: string): Promise<IpcResponse> { | ||||
|   | ||||
| @@ -1,5 +1,6 @@ | ||||
| import { AlterFunctionParams, CreateFunctionParams, IpcResponse } from 'common/interfaces/antares'; | ||||
| import { ipcRenderer } from 'electron'; | ||||
|  | ||||
| import { unproxify } from '../libs/unproxify'; | ||||
|  | ||||
| export default class { | ||||
|   | ||||
| @@ -1,6 +1,7 @@ | ||||
| import { ipcRenderer } from 'electron'; | ||||
| import { unproxify } from '../libs/unproxify'; | ||||
| import { AlterRoutineParams, CreateRoutineParams, IpcResponse } from 'common/interfaces/antares'; | ||||
| import { ipcRenderer } from 'electron'; | ||||
|  | ||||
| import { unproxify } from '../libs/unproxify'; | ||||
|  | ||||
| export default class { | ||||
|    static getRoutineInformations (params: { uid: string; schema: string; routine: string}): Promise<IpcResponse> { | ||||
|   | ||||
| @@ -1,6 +1,7 @@ | ||||
| import { ipcRenderer } from 'electron'; | ||||
| import { unproxify } from '../libs/unproxify'; | ||||
| import { AlterEventParams, CreateEventParams, IpcResponse } from 'common/interfaces/antares'; | ||||
| import { ipcRenderer } from 'electron'; | ||||
|  | ||||
| import { unproxify } from '../libs/unproxify'; | ||||
|  | ||||
| export default class { | ||||
|    static getSchedulerInformations (params: { uid: string; schema: string; scheduler: string}): Promise<IpcResponse> { | ||||
|   | ||||
| @@ -1,8 +1,9 @@ | ||||
| import { ipcRenderer } from 'electron'; | ||||
| import { unproxify } from '../libs/unproxify'; | ||||
| import { ClientCode, IpcResponse/*, EventInfos, QueryResult, RoutineInfos, TableInfos, TriggerInfos */ } from 'common/interfaces/antares'; | ||||
| import { ExportOptions } from 'common/interfaces/exporter'; | ||||
| import { ImportOptions } from 'common/interfaces/importer'; | ||||
| import { ipcRenderer } from 'electron'; | ||||
|  | ||||
| import { unproxify } from '../libs/unproxify'; | ||||
|  | ||||
| export default class { | ||||
|    static createSchema (params: { uid: string; name: string; collation?: string }): Promise<IpcResponse> { | ||||
|   | ||||
| @@ -1,6 +1,7 @@ | ||||
| import { ipcRenderer } from 'electron'; | ||||
| import { unproxify } from '../libs/unproxify'; | ||||
| import { AlterTableParams, CreateTableParams, IpcResponse } from 'common/interfaces/antares'; | ||||
| import { ipcRenderer } from 'electron'; | ||||
|  | ||||
| import { unproxify } from '../libs/unproxify'; | ||||
|  | ||||
| export default class { | ||||
|    static getTableColumns (params: {schema: string; table: string }): Promise<IpcResponse> { | ||||
|   | ||||
| @@ -1,6 +1,7 @@ | ||||
| import { ipcRenderer } from 'electron'; | ||||
| import { unproxify } from '../libs/unproxify'; | ||||
| import { AlterTriggerParams, CreateTriggerParams, IpcResponse } from 'common/interfaces/antares'; | ||||
| import { ipcRenderer } from 'electron'; | ||||
|  | ||||
| import { unproxify } from '../libs/unproxify'; | ||||
|  | ||||
| export default class { | ||||
|    static getTriggerInformations (params: { uid: string; schema: string; trigger: string }): Promise<IpcResponse> { | ||||
|   | ||||
| @@ -1,6 +1,7 @@ | ||||
| import { ipcRenderer } from 'electron'; | ||||
| import { unproxify } from '../libs/unproxify'; | ||||
| import { IpcResponse } from 'common/interfaces/antares'; | ||||
| import { ipcRenderer } from 'electron'; | ||||
|  | ||||
| import { unproxify } from '../libs/unproxify'; | ||||
|  | ||||
| export default class { | ||||
|    static getUsers (params: string): Promise<IpcResponse> { | ||||
|   | ||||
| @@ -1,6 +1,7 @@ | ||||
| import { ipcRenderer } from 'electron'; | ||||
| import { unproxify } from '../libs/unproxify'; | ||||
| import { AlterViewParams, CreateViewParams, IpcResponse } from 'common/interfaces/antares'; | ||||
| import { ipcRenderer } from 'electron'; | ||||
|  | ||||
| import { unproxify } from '../libs/unproxify'; | ||||
|  | ||||
| export default class { | ||||
|    static getViewInformations (params: { uid: string; schema: string; view: string }): Promise<IpcResponse> { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user