useCSP.d.ts 194 B

12345678
  1. export type UseCSP = () => {
  2. nonce?: string;
  3. };
  4. /**
  5. * Provide a default hook since not everyone needs to config this.
  6. */
  7. declare const useDefaultCSP: UseCSP;
  8. export default useDefaultCSP;