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