@omnia/fx
Version:
Provide Omnia Fx typings and tooling for clientside Omnia development.
20 lines (19 loc) • 416 B
TypeScript
import { MarkExtension } from "../../MarkExtension";
export default class Code extends MarkExtension {
get name(): string;
get schema(): any;
keys({ type }: {
type: any;
}): {
"Mod-`": any;
};
commands({ type }: {
type: any;
}): () => any;
inputRules({ type }: {
type: any;
}): any[];
pasteRules({ type }: {
type: any;
}): any[];
}