Skip to content

Commit

Permalink
add jsdocs comments
Browse files Browse the repository at this point in the history
  • Loading branch information
krzysztofzuraw committed Feb 21, 2024
1 parent 68b724c commit 6e59049
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/handlers/next/create-manifest-handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ export type CreateManifestHandlerOptions = {
manifestFactory(context: {
appBaseUrl: string;
request: NextApiRequest;
/** For Saleor < 3.15 it will be null. */
schemaVersion: number | null;
}): AppManifest | Promise<AppManifest>;
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ export type WebhookContext<T> = {
event: string;
payload: T;
authData: AuthData;
/** For Saleor < 3.15 it will be null. */
schemaVersion: number | null;
};

Expand Down

0 comments on commit 6e59049

Please sign in to comment.