UNPKG

@linaria/utils

Version:

Blazing fast zero-runtime CSS in JS library

7 lines (6 loc) 400 B
import type { NodePath } from '@babel/traverse'; import type { Node, Identifier, JSXIdentifier } from '@babel/types'; type FindType = 'any' | 'binding' | 'declaration' | 'reference'; export declare function nonType(path: NodePath): boolean; export default function findIdentifiers(expressions: NodePath<Node | null | undefined>[], type?: FindType): NodePath<Identifier | JSXIdentifier>[]; export {};