fix: resolve cyclic imports with LokiProfile and MessageResultProps
parent
51a36e6cb0
commit
6db6a1f65d
@ -1,5 +0,0 @@
|
|||||||
export type LokiProfile = {
|
|
||||||
displayName: string;
|
|
||||||
avatarPointer?: string;
|
|
||||||
profileKey: Uint8Array | null;
|
|
||||||
};
|
|
@ -0,0 +1,11 @@
|
|||||||
|
import { MessageAttributes } from '../../models/messageType';
|
||||||
|
|
||||||
|
type LokiProfile = {
|
||||||
|
displayName: string;
|
||||||
|
avatarPointer?: string;
|
||||||
|
profileKey: Uint8Array | null;
|
||||||
|
};
|
||||||
|
|
||||||
|
type MessageResultProps = MessageAttributes & { snippet: string };
|
||||||
|
|
||||||
|
export { LokiProfile, MessageResultProps };
|
Loading…
Reference in New Issue