mirror of
https://github.com/flarum/core.git
synced 2025-08-08 17:36:38 +02:00
17 lines
436 B
TypeScript
17 lines
436 B
TypeScript
interface StyleArgs {
|
|
prefix: string;
|
|
suffix: string;
|
|
blockPrefix: string;
|
|
blockSuffix: string;
|
|
multiline: boolean;
|
|
replaceNext: string;
|
|
prefixSpace: boolean;
|
|
scanFor: string;
|
|
surroundWithNewlines: boolean;
|
|
orderedList: boolean;
|
|
unorderedList: boolean;
|
|
trimFirst: boolean;
|
|
}
|
|
export default function styleSelectedText(textarea: HTMLTextAreaElement, styleArgs: StyleArgs): void;
|
|
export {};
|