matthew-matvei/freeman

View on GitHub
src/common/managers/IAttributesManager.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { IAttributes } from "models";

/** The interface describing an AttributesManager. */
interface IAttributesManager {

    /**
     * Gets pathToItem's file attributes.
     *
     * @param pathToItem the path to the directory item to get attributes for
     */
    getAttributesAsync(pathToItem: string): Promise<IAttributes>;
}

export default IAttributesManager;