1
0
mirror of https://github.com/sasjs/adapter.git synced 2025-12-10 17:04:36 +00:00
Files
adapter/src/types/Folder.ts
2020-09-01 14:28:15 +03:00

8 lines
102 B
TypeScript

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