8 lines
177 B
TypeScript
8 lines
177 B
TypeScript
import { CSSTreeToken } from './types.cjs';
|
|
|
|
/**
|
|
* Convert tokens tree to string
|
|
*/
|
|
declare function tokensToString(tree: CSSTreeToken[]): string;
|
|
|
|
export { tokensToString };
|