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