interface FileQueryInfo<T = object> {
    content: T;
    path: string;
    role?: FileRole;
}

Type Parameters

  • T = object

Properties

Properties

content: T
path: string
role?: FileRole