4.6.8 • Published 6 months ago

@types/react-css-modules v4.6.8

Weekly downloads
11,934
License
MIT
Repository
github
Last release
6 months ago

Installation

npm install --save @types/react-css-modules

Summary

This package contains type definitions for react-css-modules (https://github.com/gajus/react-css-modules).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-css-modules.

index.d.ts

// Type definitions for react-css-modules 4.6.0
// Project: https://github.com/gajus/react-css-modules
// Definitions by: Kostya Esmukov <https://github.com/KostyaEsmukov>, Tadas Dailyda <https://github.com/skirsdeda>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.8

interface TypeOptions {
    allowMultiple?: boolean | undefined;
    handleNotFoundStyleName?: 'throw' | 'log' | 'ignore' | undefined;
}

type StylesObject = any;

interface CSSModules {
    (defaultStyles: StylesObject, options?: TypeOptions): <C extends Function>(Component: C) => C;
    <C extends Function>(Component: C, defaultStyles: StylesObject, options?: TypeOptions): C;
}

declare module CSSModules {
    // Extend your component's Prop interface with this one to get access to `this.props.styles`
    //
    // interface MyComponentProps extends CSSModules.InjectedCSSModuleProps {}
    interface InjectedCSSModuleProps {
        styles?: StylesObject | undefined;
    }
}

declare let CSSModules: CSSModules;

export = CSSModules;

declare module 'react' {
    interface Attributes {
        styleName?: string | undefined;
    }
    interface HTMLAttributes<T> {
        styleName?: string | undefined;
    }
    interface SVGAttributes<T> {
        styleName?: string | undefined;
    }
}

Additional Details

  • Last updated: Thu, 08 Jul 2021 20:20:34 GMT
  • Dependencies: none
  • Global values: none

Credits

These definitions were written by Kostya Esmukov, and Tadas Dailyda.