Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
view-container / dist / types.d.ts
Size: Mime:
import { ComponentType } from 'react';
export declare type _Interpolation = ((executionContext: Object) => Interpolation) | string | number;
export declare type Interpolation = _Interpolation | _Interpolation[];
export declare type RuleSet = Array<Interpolation>;
export declare type Styles = Array<string> | Object;
export declare type Target = string | ComponentType<any>;
export declare type NameGenerator = (hash: number) => string;
export declare type Flattener = (chunks: Array<Interpolation>, executionContext: Object) => Array<Interpolation>;
export declare type Stringifier = (rules: Array<Interpolation>, selector: string, prefix: string) => Array<string>;
export declare type StyleSheet = {
    create: Function;
};
export * from './typings';