node_modules ignore

This commit is contained in:
2025-05-08 23:43:47 +02:00
parent e19d52f172
commit 4574544c9f
65041 changed files with 10593536 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
import { globalThis } from './utils/server-safe-globals.js';
export declare const Attributes: {
PLACEHOLDER_SRC: string;
SRC: string;
};
/**
* @attr {string} placeholdersrc - Placeholder image source URL, often a blurhash data URL.
* @attr {string} src - Poster image source URL.
*
* @cssproperty --media-poster-image-display - `display` property of poster image.
* @cssproperty --media-poster-image-background-position - `background-position` of poster image.
* @cssproperty --media-poster-image-background-size - `background-size` of poster image.
* @cssproperty --media-object-fit - `object-fit` of poster image.
* @cssproperty --media-object-position - `object-position` of poster image.
*/
declare class MediaPosterImage extends globalThis.HTMLElement {
static get observedAttributes(): string[];
image: HTMLImageElement;
constructor();
attributeChangedCallback(attrName: string, oldValue: string | null, newValue: string | null): void;
/**
*
*/
get placeholderSrc(): string | undefined;
set placeholderSrc(value: string | undefined);
/**
*
*/
get src(): string | undefined;
set src(value: string | undefined);
}
export default MediaPosterImage;