9 lines
234 B
TypeScript
9 lines
234 B
TypeScript
import type {
|
|
BackgroundPictureConfigOptions,
|
|
BackgroundPictureHTMLData,
|
|
} from "../types";
|
|
|
|
export default function renderBackgroundPicture(
|
|
config: BackgroundPictureConfigOptions
|
|
): Promise<BackgroundPictureHTMLData>;
|