Skip to content

Commit

Permalink
generate types for source field
Browse files Browse the repository at this point in the history
  • Loading branch information
jesseditson committed Jan 7, 2025
1 parent 9472a8f commit 15ac53d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions events.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,23 +67,27 @@ export type AddObjectEvent = {
export type DeleteObjectEvent = {
"object": string;
"filename": string;
"source": (string | null);
};
export type EditFieldEvent = {
"object": string;
"filename": string;
"path": ValuePath;
"field": string;
"value": (FieldValue | null);
"source": (string | null);
};
export type EditOrderEvent = {
"object": string;
"filename": string;
"order": I32;
"source": (string | null);
};
export type ChildEvent = {
"object": string;
"filename": string;
"path": ValuePath;
"source": (string | null);
};
export type ArchivalEvent = ({
"AddObject": AddObjectEvent;
Expand Down

0 comments on commit 15ac53d

Please # to comment.