9 lines
252 B
TypeScript
9 lines
252 B
TypeScript
import {CssLikeObject} from '../types/common';
|
|
import {NanoRenderer} from '../types/nano';
|
|
|
|
export interface DruleAddon {
|
|
drule: (css: CssLikeObject, block?: string) => (css?: CssLikeObject) => string;
|
|
}
|
|
|
|
export function addon(nano: NanoRenderer);
|