UNPKG

@opendash/plugin-parse

Version:

Parse Server Plugin for open.DASH

14 lines (13 loc) 502 B
import { UserInterface, SourceAdapterInterface, SourceAdapterContext } from "opendash"; import { AdapterOptions } from "./types"; export declare class ParseSourceAdapter implements SourceAdapterInterface { private context; private options; constructor(options?: Partial<AdapterOptions>); onContext(context: SourceAdapterContext): void; onUser(user: UserInterface): void; private init; private fetchSources; private mapSources; private mapSourcesMeta; }