6 lines
181 B
TypeScript
6 lines
181 B
TypeScript
|
|
export type MarkdownImagePath = {
|
||
|
|
raw: string;
|
||
|
|
safeName: string;
|
||
|
|
};
|
||
|
|
export declare function getMarkdownCodeForImages(imagePaths: MarkdownImagePath[], html: string): string;
|