7 lines
168 B
TypeScript
7 lines
168 B
TypeScript
import { Friend, RightsFlags } from '..';
|
|
export declare class FriendRightsEvent {
|
|
friend: Friend;
|
|
myRights: RightsFlags;
|
|
theirRights: RightsFlags;
|
|
}
|