mirror of
https://github.com/flarum/framework.git
synced 2025-01-11 05:43:40 +08:00
16 lines
408 B
TypeScript
16 lines
408 B
TypeScript
|
interface StyleArgs {
|
||
|
prefix: string;
|
||
|
suffix: string;
|
||
|
blockPrefix: string;
|
||
|
blockSuffix: string;
|
||
|
multiline: boolean;
|
||
|
replaceNext: string;
|
||
|
prefixSpace: boolean;
|
||
|
scanFor: string;
|
||
|
surroundWithNewlines: boolean;
|
||
|
orderedList: boolean;
|
||
|
trimFirst: boolean;
|
||
|
}
|
||
|
export default function styleSelectedText(textarea: HTMLTextAreaElement, styleArgs: StyleArgs): void;
|
||
|
export {};
|