mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-10-31 13:20:59 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			689 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			689 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| #import <IndexedDB/IDBRequest.idl>
 | |
| 
 | |
| [Exposed=(Window,Worker)]
 | |
| interface IDBCursor {
 | |
|     [ImplementedAs=source_handle] readonly attribute (IDBObjectStore or IDBIndex) source;
 | |
|     readonly attribute IDBCursorDirection direction;
 | |
|     readonly attribute any key;
 | |
|     readonly attribute any primaryKey;
 | |
|     [SameObject] readonly attribute IDBRequest request;
 | |
|     undefined advance([EnforceRange] unsigned long count);
 | |
|     undefined continue(optional any key);
 | |
|     undefined continuePrimaryKey(any key, any primaryKey);
 | |
|     [NewObject] IDBRequest update(any value);
 | |
|     [NewObject] IDBRequest delete();
 | |
| };
 | |
| 
 | |
| enum IDBCursorDirection {
 | |
|     "next",
 | |
|     "nextunique",
 | |
|     "prev",
 | |
|     "prevunique"
 | |
| };
 | 
