@signiant/media-shuttle-sdk-base
Version:
The base parent sdk behind other media shuttle sdks (e.g. media-shuttle-sdk)
16 lines • 593 B
TypeScript
import File from './File';
/**
* The file type used to denote files (or folders) on a portal.
*/
interface RemoteFile extends File {
/**
* The path to the file relative to the root of the portal we are downloading from where path separators are
* always unix style ('/').
*
* @example If the absolute path of the file is /path/to/portal/path/to/file.txt and the path to the portal root
* on disk is /path/to/portal than the relativeFilePath === /path/to/file.txt
*/
filePath: string;
}
export default RemoteFile;
//# sourceMappingURL=RemoteFile.d.ts.map