11 lines
230 B
TypeScript
11 lines
230 B
TypeScript
import { ZeroPlugin, ZeroPluginOptions } from '../core';
|
|
import createFields from './fields/createFields';
|
|
|
|
export default {
|
|
name: "zero.editor",
|
|
|
|
install(app: ZeroPluginOptions)
|
|
{
|
|
createFields(app);
|
|
}
|
|
} as ZeroPlugin; |