mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
21 lines
521 B
TypeScript
21 lines
521 B
TypeScript
// Type definitions for spatialite 0.0
|
|
// Project: http://github.com/zhm/node-spatialite
|
|
// Definitions by: Arne Schubert <https://github.com/atd-schubert>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
export {
|
|
OPEN_READONLY,
|
|
OPEN_READWRITE,
|
|
OPEN_CREATE,
|
|
cached,
|
|
RunResult,
|
|
Statement,
|
|
verbose } from 'sqlite3';
|
|
import {
|
|
Database as OriginalDatabase
|
|
} from 'sqlite3';
|
|
|
|
export class Database extends OriginalDatabase {
|
|
spatialite(cb: (err: Error) => void): void;
|
|
}
|