@iobroker/adapter-react-v5
Version:
React components to develop ioBroker interfaces with react.
12 lines (11 loc) • 411 B
TypeScript
export declare class MDUtils {
static text2link(text: string): string;
static openLink(url: string, target?: string): void;
static getTitle(text: string): string;
static extractHeader(text: string): {
header: Record<string, string | boolean | number>;
body: string;
};
static removeDocsify(text: string): string;
static onCopy(e: Event | null, text: string): void;
}