declare global {
    interface Window {
        pktFetch: () => Promise<{
            ok: boolean;
            text: () => Promise<string>;
        }>;
        pktIconPath: string;
    }
}
