Skip to content

Commit fe0345c

Browse files
committed
feat: 🎸 add drule addon typings
1 parent 44aa82b commit fe0345c

File tree

3 files changed

+56
-10
lines changed

3 files changed

+56
-10
lines changed

‎index.d.ts

+5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import {CreateNano} from './types/nano';
22
import {RuleAddon} from './types/addon/rule';
33
import {UnitsAddon} from './types/addon/units';
4+
import {DruleAddon} from './types/addon/drule';
45

56
export * from './types/nano';
67

@@ -12,6 +13,10 @@ declare module 'nano-css/addon/rule' {
1213
export const addon: RuleAddon;
1314
}
1415

16+
declare module 'nano-css/addon/rdule' {
17+
export const addon: DruleAddon;
18+
}
19+
1520
declare module 'nano-css/addon/units' {
1621
export const addon: UnitsAddon;
1722
}

‎types/addon/drule.d.ts

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import {CssLikeObject, TDynamicCss} from '../common';
2+
import {NanoRenderer} from '../nano';
3+
4+
export interface DrulePatch {
5+
drule: (css: CssLikeObject, block?: string) => TDynamicCss;
6+
}
7+
8+
export type DruleAddon = <T extends NanoRenderer>(nano: T) => T & DrulePatch;

‎types/nano.d.ts

+43-10
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,10 @@
11
import {CssLikeObject} from './common';
22
import {RulePatch} from './addon/rule';
3+
import {DrulePatch} from './addon/drule';
4+
import {UnitsPatch} from './addon/units';
35

46
/*
57
interface NanoRenderer extends Partial<IUnits> {
6-
client: boolean;
7-
raw: string;
8-
pfx: string;
9-
putRaw: (rawCss: string) => void;
10-
put: (selector: string, css: ICssLikeObject, atrule?: string) => void;
11-
rule?: (css: ICssLikeObject, block?: string) => string;
12-
drule?: (css: ICssLikeObject, block?: string) => TDynamicCss;
138
sheet?: (cssMap: {[s: string]: ICssLikeObject}, block?: string) => {[s: string]: string};
149
dsheet?: (cssMap: {[s: string]: ICssLikeObject}, block?: string) => {[s: string]: TDynamicCss};
1510
jsx?: (
@@ -50,7 +45,7 @@ interface NanoRenderer extends Partial<IUnits> {
5045
}
5146
*/
5247

53-
export interface NanoRenderer extends Partial<RulePatch> {
48+
export interface NanoRenderer extends Partial<RulePatch>, Partial<UnitsPatch>, Partial<DrulePatch> {
5449
/**
5550
* Equals to `true` if in browser environment.
5651
*/
@@ -103,15 +98,53 @@ export interface NanoRenderer extends Partial<RulePatch> {
10398
put: (selector: string, css: CssLikeObject, atrule?: string) => void;
10499
}
105100

106-
interface INanoOptions {
101+
interface Options {
102+
/**
103+
* Prefix added to all class names and animation names.
104+
*/
107105
pfx?: string;
106+
107+
/**
108+
* Hyperscript function of your virtual DOM library. Needed only if you use
109+
* addons (like `jsx`, `style`, `styled`, `component`) that create components.
110+
*
111+
* ```js
112+
* const nano = create({
113+
* h: React.createElement,
114+
* });
115+
* ```
116+
*/
108117
h?: (...args) => any;
118+
119+
/**
120+
* Stylesheet `<sheet>` to be used to inject CSS. If not provided, one will
121+
* be automatically created. You can also provide an external stylesheet
122+
* `<link>`, but then you need to set proper attributes on it: `rel="stylesheet" type="text/css"`.
123+
*
124+
* ```js
125+
* const nano = create({
126+
* sh: typeof window === 'object' ? document.getElementById('nano-css') : undefined,
127+
* });
128+
* ```
129+
*/
109130
sh?: CSSStyleSheet;
131+
132+
/**
133+
* Whether to be chatty in DEV mode.
134+
*/
110135
verbose?: boolean;
136+
137+
/**
138+
* Defaults to `Object.assign`.
139+
*/
111140
assign?: (...objects: object[]) => object;
141+
142+
/**
143+
* Defaults to `JSON.stringify`.
144+
*/
112145
stringify?: (obj: object) => string;
113146
}
114147

115-
type CreateNano = (options?: INanoOptions) => NanoRenderer;
148+
type CreateNano = (options?: Options) => NanoRenderer;
116149

117150
export const create: CreateNano;

0 commit comments

Comments
 (0)