mirror of
https://github.com/sasjs/adapter.git
synced 2026-01-11 22:30:05 +00:00
9 lines
121 B
TypeScript
9 lines
121 B
TypeScript
import { Link } from './Link'
|
|
|
|
export interface File {
|
|
id: string
|
|
name: string
|
|
parentUri: string
|
|
links: Link[]
|
|
}
|