generated from react-component/footer
-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy pathindex.ts
40 lines (37 loc) · 1.01 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import useCacheToken from './hooks/useCacheToken';
import type { CSSInterpolation, CSSObject } from './hooks/useStyleRegister';
import useStyleRegister, {
extractStyle,
extractStyleNode,
} from './hooks/useStyleRegister';
import Keyframes from './Keyframes';
import type { Linter } from './linters';
import { logicalPropertiesLinter } from './linters';
import { createCache, StyleProvider } from './StyleContext';
import type { DerivativeFunc, TokenType } from './theme';
import { createTheme, Theme } from './theme';
import type { Transformer } from './transformers/interface';
import legacyLogicalPropertiesTransformer from './transformers/legacyLogicalProperties';
export {
Theme,
createTheme,
useStyleRegister,
useCacheToken,
createCache,
StyleProvider,
Keyframes,
extractStyle,
extractStyleNode,
// Transformer
legacyLogicalPropertiesTransformer,
// Linters
logicalPropertiesLinter,
};
export type {
TokenType,
CSSObject,
CSSInterpolation,
DerivativeFunc,
Transformer,
Linter,
};