UNPKG

jslib-nightly

Version:

SheerID JavaScript Library

7 lines (6 loc) 514 B
import { OrganizationSearchResp, AddSchoolRequestViewModel } from '../types/types'; declare type FetchOrganizationResponse = Promise<OrganizationSearchResp | undefined>; export declare function fetchProgramOrganizations(orgSearchUrl: string, searchTerm: string, countryCode?: string, searchTags?: string): FetchOrganizationResponse; export declare const fetchRequestOrganizations: (url: string) => Promise<Object>; export declare function addSchool(request: AddSchoolRequestViewModel): Promise<Object>; export {};