7 lines
216 B
TypeScript
7 lines
216 B
TypeScript
declare module "@vanilla-extract/next-plugin" {
|
|
declare const createVanillaExtractPlugin: () => (
|
|
config: import("next").NextConfig,
|
|
) => import("next").NextConfig;
|
|
export { createVanillaExtractPlugin };
|
|
}
|