Files
dmenu-plus-front/next-pwa.d.ts
T
Mahyar Khanbolooki 99e66e3cae add: pwa
2025-08-02 17:41:31 +03:30

19 lines
397 B
TypeScript

declare module 'next-pwa' {
import type { NextConfig } from 'next';
type WithPWA = (nextConfig: NextConfig) => NextConfig;
interface NextPWAOptions {
dest: string;
register?: boolean;
skipWaiting?: boolean;
disable?: boolean;
buildExcludes?: string[];
[key: string]: unknown;
}
const withPWA: (options: NextPWAOptions) => WithPWA;
export default withPWA;
}