indexeddbshim
Version:
A polyfill for IndexedDB using WebSql
20 lines • 592 B
TypeScript
export default DOMStringList;
export type Integer = number;
export type DOMStringListFull = {
_items: string[];
_length: Integer;
[key: number]: string;
addIndexes: () => void;
sortList: () => string[];
push: (item: string) => void;
clone: () => DOMStringListFull;
contains: (str: string) => boolean;
indexOf: (str: string) => Integer;
splice: (index: Integer, howmany: Integer, ...args: any) => void;
length: Integer;
};
export type AnyValue = any;
declare class DOMStringList {
get length(): any;
}
//# sourceMappingURL=DOMStringList.d.ts.map