Skip to content

Commit

Permalink
Merge pull request #379 from susnux/fix/props-types
Browse files Browse the repository at this point in the history
fix(types): `resourcetype` can have any type, so can `collection`
  • Loading branch information
perry-mitchell authored Aug 2, 2024
2 parents e409a59 + fdf6cae commit 553c0b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export type DAVResultResponse = DAVResultBaseResponse &
export interface DAVResultResponseProps {
displayname: string;
resourcetype: {
collection?: boolean;
collection?: unknown;
};
getlastmodified?: string;
getetag?: string;
Expand Down

0 comments on commit 553c0b2

Please sign in to comment.