Files
hoppscotch/packages/hoppscotch-common/src/platform/ui.ts

10 lines
199 B
TypeScript

import { Ref } from "vue"
export type UIPlatformDef = {
appHeader?: {
paddingTop?: Ref<string>
paddingLeft?: Ref<string>
}
onCodemirrorInstanceMount?: (element: HTMLElement) => void
}