mirror of
https://git.um-react.app/um/um-react.git
synced 2025-11-28 03:23:02 +00:00
20 lines
442 B
TypeScript
20 lines
442 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;
|
|
}
|
|
|
|
declare module '*&mac-command' {
|
|
export const tarball: string;
|
|
export const commandName: string;
|
|
export const tarName: string;
|
|
}
|