UNPKG

@universal-labs/native-twin-nextjs

Version:
7 lines (6 loc) 482 B
/// <reference types="react" /> import type { TailwindConfig, TailwindUserConfig } from '@universal-labs/native-twin'; import type { AppProps } from 'next/app'; export { installApp }; declare function installApp(config: TailwindConfig<any> | TailwindUserConfig<any>): React.JSXElementConstructor<AppProps>; declare function installApp<Props, Component>(config: TailwindConfig<any> | TailwindUserConfig<any>, AppComponent: React.JSXElementConstructor<Props> & Component): Component;