mirror of
https://git.unlock-music.dev/um/um-react.git
synced 2025-05-23 16:27:41 +08:00
14 lines
306 B
TypeScript
14 lines
306 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
module 'virtual:pwa-register' {
|
|
/**
|
|
* See: {@link https://vite-pwa-org.netlify.app/guide/prompt-for-update.html}
|
|
*/
|
|
declare function registerSW(_opts: unknown): () => void;
|
|
}
|
|
|
|
declare module '*?base64' {
|
|
const content: string;
|
|
export default content;
|
|
}
|