1
0
mirror of https://github.com/bpatrik/pigallery2.git synced 2025-01-10 04:07:35 +02:00
pigallery2/backend/model/IGalleryManager.ts
2016-04-22 13:23:44 +02:00

4 lines
179 B
TypeScript

import {Directory} from "../../common/entities/Directory";
export interface IGalleryManager {
listDirectory(relativeDirectoryName, cb:(error: any,result:Directory) => void);
}