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