Skip to content

Commit

Permalink
Make DavProperties available to apps (#9860)
Browse files Browse the repository at this point in the history
  • Loading branch information
dschmidt authored Oct 25, 2023
1 parent 4323b44 commit 8d7e7c7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/web-client/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@ import { ocs, OCS } from './ocs'
export type { Graph } from './graph'
export type { OCS } from './ocs'

export * as helpers from './helpers'
export * as errors from './errors'
export * as helpers from './helpers'
export * as webdav from './webdav'

export type { Resource, SpaceResource, User } from './helpers'

Expand Down
1 change: 1 addition & 0 deletions packages/web-client/src/webdav/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import { GetPathForFileIdFactory } from './getPathForFileId'
import { DAV } from './client/dav'
import { ListFileVersionsFactory } from './listFileVersions'

export * from './constants'
export * from './types'

export const webdav = (options: WebDavOptions): WebDAV => {
Expand Down

0 comments on commit 8d7e7c7

Please sign in to comment.