File tree Expand file tree Collapse file tree 2 files changed +15
-0
lines changed 
api/deleted-pages/project Expand file tree Collapse file tree 2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change 1+ import  type  {  ProjectId  }  from  "../../../base.ts" ; 
2+ import  type  {  Page  }  from  "../../pages/project/title.ts" ; 
3+ 
4+ /** The response type of /api/deleted-pages/:projectname/:pageid */ 
5+ export  interface  DeletedPage 
6+   extends  Pick < Page ,  "id"  |  "title"  |  "image"  |  "lines" >  { 
7+   /** The project id */ 
8+   projectId : ProjectId ; 
9+ 
10+   /** The created time of the page */ 
11+   created : null ; 
12+   /** The updated time of the page */ 
13+   updated : null ; 
14+ } 
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ export * from "./error.ts";
99export  *  from  "./stream-event.ts" ; 
1010
1111export  *  from  "./api/commits/project/pageId.ts" ; 
12+ export  *  from  "./api/deleted-pages/project/pageId.ts" ; 
1213export  *  from  "./api/embed-text/twitter.ts" ; 
1314export  *  from  "./api/embed-text/url.ts" ; 
1415export  *  from  "./api/page-data/export/project.ts" ; 
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments