@omnia/fx
Version:
Provide Omnia Fx typings and tooling for clientside Omnia development.
15 lines (14 loc) • 365 B
TypeScript
import { NodeExtension } from "../../../NodeExtension";
export default class HardBreak extends NodeExtension {
get name(): string;
get schema(): any;
keys({ type }: {
type: any;
}): {
"Mod-Enter": any;
"Shift-Enter": any;
};
commands({ type }: {
type: any;
}): () => (state: any, dispatch: any) => any;
}