001/*
002 * To change this license header, choose License Headers in Project Properties.
003 * To change this template file, choose Tools | Templates
004 * and open the template in the editor.
005 */
006package gwt.material.design.jscore.client.api.db;
007
008import jsinterop.annotations.JsProperty;
009import jsinterop.annotations.JsType;
010
011/**
012 * @author Cristian Rinaldi <csrinaldi@gmail.com>
013 */
014@JsType(isNative = true)
015public class IDBEnvironment {
016    
017    @JsProperty
018    public native IDBFactory getIndexedDB();
019    
020}