Files
spacedrive/core/bindings/DirectoryWithContents.ts
2022-05-23 03:16:23 -07:00

4 lines
167 B
TypeScript

import type { File } from "./File";
import type { FilePath } from "./FilePath";
export interface DirectoryWithContents { directory: FilePath, contents: Array<File>, }