summaryrefslogtreecommitdiff
path: root/src/sources/ISource.ts
blob: 042aaae2454b0f0b60eea6c28bef70f361735b5e (plain)
1
2
3
export interface ISource {
    getData(): Promise<string>;
}