@omnia/fx
Version:
Provide Omnia Fx typings and tooling for clientside Omnia development.
19 lines (18 loc) • 426 B
TypeScript
import { NodeExtension } from "../../NodeExtension";
export default class BulletList extends NodeExtension {
get name(): string;
get schema(): any;
commands({ type, schema }: {
type: any;
schema: any;
}): () => any;
keys({ type, schema }: {
type: any;
schema: any;
}): {
"Shift-Ctrl-8": any;
};
inputRules({ type }: {
type: any;
}): any[];
}