astro-ghostcms/.pnpm-store/v3/files/0f/89d163528329871ef0c5a077caf...

18 lines
379 B
Plaintext

export type StyleTuple = [string, string]
export interface Style {
[key: string]: string | number | Style
}
export function getPropertyName(name: string): string
export function getStylesForProperty(
name: string,
value: string,
allowShorthand?: boolean
): Style
export default function transform(
styleTuples: StyleTuple[],
shorthandBlacklist?: string[]
): Style