import Source from "./source"; import { TypeOpts } from "../shared/source-interfaces"; export default class SubredditPostSource extends Source { protected data: any; readonly schema: { subreddit: { description: string; type: TypeOpts; default: string; minLength: number; }; type: { description: string; type: TypeOpts; default: string; enum: string[]; }; time: { description: string; type: TypeOpts; default: string; enum: string[]; }; }; readonly description: string; readonly type: string; find(): AsyncGenerator; }