1
0
mirror of https://github.com/sasjs/adapter.git synced 2026-01-06 20:10:05 +00:00
Files
adapter/src/types/Folder.ts
2020-07-07 19:53:35 +01:00

8 lines
106 B
TypeScript

import { Link } from "./Link";
export interface Folder {
id: string;
uri: string;
links: Link[];
}