site.d.ts 265 B

12345678910111213
  1. import { CSSProp } from 'styled-components';
  2. declare global {
  3. interface Window {
  4. hljs: {
  5. highlightElement: (element: HTMLElement) => void;
  6. };
  7. }
  8. }
  9. declare module 'react' {
  10. interface Attributes {
  11. css?: CSSProp;
  12. }
  13. }