UNPKG

@notion-md-converter/core

Version:
19 lines (18 loc) 481 B
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 {};