copy base dmenu to dkala

This commit is contained in:
hamid zarghami
2026-02-07 15:31:22 +03:30
commit c9e37f6177
521 changed files with 57786 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
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;
}