File size: 350 Bytes
d15ea6f
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
/// <reference path="../.astro/types.d.ts" />
/// <reference types="astro/client" />
/// <reference types="vite/client" />

interface ImportMetaEnv {
  readonly PUBLIC_TABLE_OF_CONTENT_AUTO_COLLAPSE?: string | boolean;
  // Back-compat
  readonly PUBLIC_TOC_AUTO_COLLAPSE?: string | boolean;
}

interface ImportMeta {
  readonly env: ImportMetaEnv;
}