head-manager-context.d.ts 246 B

12345678
  1. import React from 'react';
  2. export declare const HeadManagerContext: React.Context<{
  3. updateHead?: (state: any) => void;
  4. mountedInstances?: any;
  5. updateScripts?: (state: any) => void;
  6. scripts?: any;
  7. getIsSsr?: () => boolean;
  8. }>;