-
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
28 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
import {CreateNano} from './types/nano'; | ||
export * from './types/nano'; | ||
export * from './types/common'; | ||
export const create: CreateNano; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
import * as CSS from 'csstype'; | ||
import {Atoms} from '../addon/atoms'; | ||
|
||
interface CssProps extends CSS.Properties, CSS.PropertiesHyphen, Atoms {} | ||
export interface CssProps extends CSS.Properties, CSS.PropertiesHyphen, Atoms {} | ||
|
||
interface CssLikeObject extends CssProps { | ||
export interface CssLikeObject extends CssProps { | ||
[selector: string]: any | CssLikeObject; | ||
} | ||
|
||
type TDynamicCss = (css: CssLikeObject) => string; | ||
type THyperstyleElement = object; | ||
type THyperstyle = (...args) => THyperstyleElement; | ||
type THyperscriptType = string | Function; | ||
type THyperscriptComponent = Function; | ||
export type TDynamicCss = (css: CssLikeObject) => string; | ||
export type THyperstyleElement = object; | ||
export type THyperstyle = (...args) => THyperstyleElement; | ||
export type THyperscriptType = string | Function; | ||
export type THyperscriptComponent = Function; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23a1ade
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Build version:
5.2.1-types.128
🤞types
on CircleCI 🎉