interface Schemas {
    byFrom?: {
        [type: string]: string[];
    };
    byTo?: {
        [type: string]: string[];
    };
    byType?: {
        [type: string]: {
            from: string;
            get?: ((deep: any, id: any) => Promise<any>);
            to: string;
        };
    };
}

Properties

Properties

byFrom?: {
    [type: string]: string[];
}
byTo?: {
    [type: string]: string[];
}
byType?: {
    [type: string]: {
        from: string;
        get?: ((deep: any, id: any) => Promise<any>);
        to: string;
    };
}