mirror of
https://github.com/flarum/framework.git
synced 2024-11-25 09:41:49 +08:00
c3a684c7ed
Includes transpiled JS/TS, and Typescript declaration files (typings). [skip ci]
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 {};
|