mirror of
https://github.com/sasjs/adapter.git
synced 2026-01-08 04:50:06 +00:00
9 lines
124 B
TypeScript
9 lines
124 B
TypeScript
import { Link } from './Link'
|
|
|
|
export interface Folder {
|
|
id: string
|
|
uri: string
|
|
links: Link[]
|
|
memberCount: number
|
|
}
|