interface FileQueryInfo<T = object> {
    content: T;
    path: string;
    roles?: readonly FileRole[];
}

Type Parameters

  • T = object

Properties

Properties

content: T
path: string
roles?: readonly FileRole[]