1
0
mirror of https://github.com/sasjs/adapter.git synced 2026-01-11 22:30:05 +00:00
Files
adapter/src/types/File.ts

9 lines
121 B
TypeScript

import { Link } from './Link'
export interface File {
id: string
name: string
parentUri: string
links: Link[]
}