import { Connection } from '../../connection'; import { FileStat } from '../../filestats'; import ExecCommand from '../abstract/exec'; export default class FileStatCommand extends ExecCommand { protected rawCmd: string; constructor(connection: Connection, serial: string, path: string); protected cast(value: string): FileStat; }