@notion-md-converter/core
Version:
Notion to Markdown Converter
19 lines (18 loc) • 481 B
TypeScript
type ObjectTagOptions = {
data: string;
width?: string;
height?: string;
type: "application/pdf";
};
type VideoTagOptions = {
src: string;
controls?: boolean;
width?: string;
height?: string;
};
export declare const HTMLUtils: {
objectToPropertiesStr: (object: Record<string, string | boolean | undefined | null>) => string;
objectTag: (options: ObjectTagOptions) => string;
videoTag: (options: VideoTagOptions) => string;
};
export {};