Skip to content

Commit

Permalink
allow multiple params for logging
Browse files Browse the repository at this point in the history
  • Loading branch information
bofeiw committed Feb 23, 2023
1 parent eee88d9 commit f756f1f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/CodeEditor/rowy.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ type uploadOptions = {
fileName?: string;
};
type RowyLogging = {
log: (payload: any) => void;
warn: (payload: any) => void;
error: (payload: any) => void;
log: (...payload: any[]) => void;
warn: (...payload: any[]) => void;
error: (...payload: any[]) => void;
};
interface Rowy {
metadata: {
Expand Down

0 comments on commit f756f1f

Please sign in to comment.