clapper / src /services /editors /getDefaultEditorsState.ts
jbilcke-hf's picture
jbilcke-hf HF staff
add linter and prettifier
c1f12bf
raw
history blame
No virus
209 Bytes
import { EditorsState, EditorView } from '@aitube/clapper-services'
export function getDefaultEditorsState(): EditorsState {
const state: EditorsState = {
view: EditorView.SCRIPT,
}
return state
}