@types/prefixfree
TypeScript icon, indicating that this package has built-in type declarations

1.0.4 • Public • Published

Installation

npm install --save @types/prefixfree

Summary

This package contains type definitions for prefixfree (https://github.com/LeaVerou/prefixfree).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/prefixfree.

index.d.ts

declare namespace StyleFix {
    type StyleFixer = (css: string, raw: boolean, element: Element) => string;
}

interface StyleFix {
    fix: StyleFix.StyleFixer;
    fixers?: StyleFix.StyleFixer[] | undefined;
    optIn: boolean;
    camelCase(str: string): string;
    deCamelCase(str: string): string;
    link(link: HTMLLinkElement): void;
    process(): void;
    register(fixer: StyleFix.StyleFixer, index?: number): void;
    styleAttribute(element: ElementCSSInlineStyle): void;
    styleElement(style: HTMLStyleElement): void;
}

declare const StyleFix: StyleFix;

// PrefixFree
declare namespace PrefixFree {
    /** The known prefixes used for CSS properties. */
    type KnownPrefixCSS = "-moz-" | "-ms-" | "-o-" | "-webkit-";

    /** The known prefixes used for CSS properties in `CSSStyleDeclaration`. */
    type KnownPrefixJS = "Moz" | "Ms" | "O" | "Webkit";
}

interface PrefixFree {
    /**
     * The prefix used for CSS properties.
     *
     * Eg.: `-moz-`, `-ms-`, `-o-` or `-webkit-`.
     */
    prefix: PrefixFree.KnownPrefixCSS | string;

    /**
     * The prefix used for CSS properties in `CSSStyleDeclaration`.
     *
     * Eg.: `Moz`, `Ms`, `O` or `Webkit`.
     */
    Prefix: PrefixFree.KnownPrefixJS | string;

    atrules: string[];
    functions: string[];
    keywords: string[];
    properties: string[];
    selectorMap: {
        [selector: string]: string;
    };
    selectors: string[];
    valueProperties: string[];

    prefixCSS: StyleFix.StyleFixer;
    prefixProperty(property: string, camelCase?: boolean): string;
    prefixSelector(selector: string): string;
    property(property: string): string;
    value(value: string, property?: string): string;
}

declare const PrefixFree: PrefixFree;

interface Window {
    StyleFix: StyleFix;
    PrefixFree: PrefixFree;
}

Additional Details

  • Last updated: Tue, 07 Nov 2023 09:09:39 GMT
  • Dependencies: none

Credits

These definitions were written by ExE Boss.

/@types/prefixfree/

    Package Sidebar

    Install

    npm i @types/prefixfree

    Weekly Downloads

    40

    Version

    1.0.4

    License

    MIT

    Unpacked Size

    6.18 kB

    Total Files

    5

    Last publish

    Collaborators

    • types