UNPKG

@omnia/fx

Version:

Provide Omnia Fx typings and tooling for clientside Omnia development.

21 lines (20 loc) 440 B
import { MarkExtension } from "../../MarkExtension"; export default class Italic extends MarkExtension { priority: number; get name(): string; get schema(): any; keys({ type }: { type: any; }): { "Mod-i": any; }; commands({ type }: { type: any; }): () => any; inputRules({ type }: { type: any; }): any[]; pasteRules({ type }: { type: any; }): any[]; }