parent
da768f8ef3
commit
ad7d250c85
@ -0,0 +1,13 @@ |
||||
import { IFilePanel } from '@remixproject/plugin-api' |
||||
import { StatusEvents } from '@remixproject/plugin-utils' |
||||
|
||||
export interface ILayoutApi { |
||||
events:{ |
||||
} & StatusEvents |
||||
methods: { |
||||
maximisePinnedPanel: () => void |
||||
maximiseSidePanel: () => void |
||||
resetPinnedPanel: () => void |
||||
resetSidePanel: () => void |
||||
} |
||||
} |
@ -0,0 +1,11 @@ |
||||
import { IFilePanel } from '@remixproject/plugin-api' |
||||
import { StatusEvents } from '@remixproject/plugin-utils' |
||||
|
||||
export interface IPinnedPanelApi { |
||||
events:{ |
||||
|
||||
} & StatusEvents |
||||
methods: { |
||||
currentFocus(): Promise<string> |
||||
} |
||||
} |
@ -0,0 +1,11 @@ |
||||
import { IFilePanel } from '@remixproject/plugin-api' |
||||
import { StatusEvents } from '@remixproject/plugin-utils' |
||||
|
||||
export interface ISidePanelApi { |
||||
events:{ |
||||
focusChanged: (name: string) => void; |
||||
} & StatusEvents |
||||
methods: { |
||||
|
||||
} |
||||
} |
Loading…
Reference in new issue