program-repository.d.ts 256 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 /// <reference types="es6-promise" /> export interface ProgramRepository { findById(id: string): Promise<any>; findByIds(ids: Array<string>): Promise<Array<any>>; findByType(type: string): Promise<Array<any>>; replicate(): Promise<void>; }