mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-01-17 14:37:05 +01:00
13 lines
469 B
TypeScript
13 lines
469 B
TypeScript
import * as editor from './Editor';
|
|
|
|
export type { EditorProps } from './Editor';
|
|
// TODO: Figure out why code-splitting breaks production build from
|
|
// showing any content
|
|
// const editor = await import('./Editor');
|
|
|
|
export const Editor = editor.Editor;
|
|
export const graphql = editor.graphql;
|
|
export const getIntrospectionQuery = editor.getIntrospectionQuery;
|
|
export const buildClientSchema = editor.buildClientSchema;
|
|
export const formatGraphQL = editor.formatSdl;
|