Skip to content

Commit

Permalink
Merge pull request rowyio#1131 from rowyio/feature/logging-multi-params
Browse files Browse the repository at this point in the history
ROWY-912: allow multiple params for logging
  • Loading branch information
shamsmosowi authored Feb 23, 2023
2 parents b43efea + f756f1f commit 4bbe1e9
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 4bbe1e9

Please sign in to comment.