UNPKG

@braindb/core

Version:

markdown-graph-content-layer-database

22 lines (21 loc) 463 B
import { Db } from "./db.js"; import { Document } from "./Document.js"; export declare class Task { private idPath; private offset; private lnk; private db; private getDbRecord; constructor(db: Db, idPath: string, offset: number); from(): Document; ast(): unknown; checked(): boolean; line(): number; column(): number; id(): number; /** * experimental */ text(): string; markdown(): string; }