1 | import { ISharingEmailData, ISharingResult, SharingRole, ISharedFuncs } from "./types.js";
|
2 | declare module "../folders/types" {
|
3 | interface _Folder extends ISharedFuncs {
|
4 | shareWith(loginNames: string | string[], role?: SharingRole, requireSignin?: boolean, shareEverything?: boolean, emailData?: ISharingEmailData): Promise<ISharingResult>;
|
5 | }
|
6 | interface IFolder extends ISharedFuncs {
|
7 | shareWith(loginNames: string | string[], role?: SharingRole, requireSignin?: boolean, shareEverything?: boolean, emailData?: ISharingEmailData): Promise<ISharingResult>;
|
8 | }
|
9 | }
|
10 |
|
\ | No newline at end of file |