Repository URL to install this package:
| 
      
     
      
        
        
        Version: 
        
         
  
        
    
          
          2.0.11-8  ▾
        
         
  
      
        
      
  
      
  
     | 
    
    notion-enhanced
  
    /
        
    usr
  
        /
        
    lib
  
        /
        
    notion-enhanced
  
        /
        
    resources
  
        /
        
    app
  
        /
        
    node_modules
  
        /
        
    builder-util-runtime
  
        /
        
    out
  
        /
        blockMapApi.d.ts
    | 
|---|
export interface FileChunks {
    checksums: Array<string>;
    sizes: Array<number>;
}
export interface BlockMap {
    version: "1" | "2";
    files: Array<BlockMapFile>;
}
export interface BlockMapFile extends FileChunks {
    name: string;
    offset: number;
}