import Source from "./source"; import { TypeOpts } from "../shared/source-interfaces"; export default class SavedPostSource extends Source { protected data: any; readonly schema: { getComments: { description: string; type: TypeOpts; default: boolean; }; }; readonly description: string; readonly type: string; find(): AsyncGenerator; }