File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed
Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -87,9 +87,9 @@ declare module "SendbirdUIKitGlobal" {
8787 }
8888
8989 export type Logger = {
90- info?(title?: unknown, description ?: unknown): void;
91- error?(title?: unknown, description ?: unknown): void;
92- warning?(title?: unknown, description ?: unknown): void;
90+ info(message: string, payload ?: Record<string, unknown> ): void;
91+ error(message: string, payload ?: Record<string, unknown> ): void;
92+ warning(message: string, payload ?: Record<string, unknown> ): void;
9393 }
9494
9595 export type MarkAsReadSchedulerType = {
Original file line number Diff line number Diff line change @@ -18,10 +18,10 @@ interface RenderUserProfileProps {
1818}
1919
2020export type Logger = {
21- info ? ( title ?: unknown , description ?: unknown ) : void ;
22- error ? ( title ?: unknown , description ?: unknown ) : void ;
23- warning ? ( title ?: unknown , description ?: unknown ) : void ;
24- } ;
21+ info ( message : string , payload ?: Record < string , unknown > ) : void ;
22+ error ( message : string , payload ?: Record < string , unknown > ) : void ;
23+ warning ( message : string , payload ?: Record < string , unknown > ) : void ;
24+ }
2525
2626export enum SendbirdUIKitThemes {
2727 light = 'light' ,
You can’t perform that action at this time.
0 commit comments