2018-09-13 23:04:55 +03:00
|
|
|
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2017-08-24 11:52:52 +03:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
[ChromeOnly]
|
|
|
|
interface MozStorageAsyncStatementParams
|
|
|
|
{
|
|
|
|
readonly attribute unsigned long length;
|
|
|
|
|
|
|
|
[Throws]
|
|
|
|
getter any(unsigned long index);
|
|
|
|
|
|
|
|
[Throws]
|
|
|
|
getter any(DOMString name);
|
|
|
|
|
|
|
|
[Throws]
|
2017-11-04 07:36:10 +03:00
|
|
|
setter void(unsigned long index, any arg);
|
2017-08-24 11:52:52 +03:00
|
|
|
|
|
|
|
[Throws]
|
2017-11-04 07:36:10 +03:00
|
|
|
setter void(DOMString name, any arg);
|
2017-08-24 11:52:52 +03:00
|
|
|
};
|