9 lines
224 B
TypeScript
9 lines
224 B
TypeScript
import type {
|
|
BackgroundImageConfigOptions,
|
|
BackgroundImageHTMLData,
|
|
} from "../types";
|
|
|
|
export default function renderBackgroundImage(
|
|
config: BackgroundImageConfigOptions
|
|
): Promise<BackgroundImageHTMLData>;
|