UNPKG

rollup-plugin-react-scoped-css

Version:

A rollup plugin designed to allow scoped css to be run in react (Compatible with vite and rollup)

10 lines (9 loc) 283 B
export interface JsxParser { isNodeReactElement: (node: any) => boolean; isNodeReactFragment: (node: any) => boolean; extendNodeWithAttributes: (node: any, attr: string) => any; } export declare enum ParserImplementations { modern = "modern", legacy = "legacy" }